summaryrefslogtreecommitdiffstats
path: root/tests/run.sh
diff options
context:
space:
mode:
authorKarel Zak2007-05-18 15:34:28 +0200
committerKarel Zak2007-05-18 15:34:28 +0200
commit57a917d630b18908ac0b83336b3b0692c5033f9a (patch)
tree5b518b248fb00755b62400585075de42f66e46ee /tests/run.sh
parenttests: "if [...]" clean up (diff)
downloadkernel-qcow2-util-linux-57a917d630b18908ac0b83336b3b0692c5033f9a.tar.gz
kernel-qcow2-util-linux-57a917d630b18908ac0b83336b3b0692c5033f9a.tar.xz
kernel-qcow2-util-linux-57a917d630b18908ac0b83336b3b0692c5033f9a.zip
tests: add ts_log and --verbose support
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tests/run.sh')
-rwxr-xr-xtests/run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run.sh b/tests/run.sh
index 4a475d826..51b7f7383 100755
--- a/tests/run.sh
+++ b/tests/run.sh
@@ -11,7 +11,7 @@ rm -f *~
res=0
count=0
for ts in $(find -maxdepth 1 -regex "\./ts[^\.~]*" | sort); do
- $TS_TOPDIR/$ts
+ $TS_TOPDIR/$ts "$1"
res=$(( $res + $? ))
count=$(( $count + 1 ))
done