summaryrefslogtreecommitdiff
path: root/tests/misc-tests.sh
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2015-07-11 00:38:07 +0200
committerDavid Sterba <dsterba@suse.com>2015-08-31 19:25:09 +0200
commita5afa55a30a07f18c17527ad09420afb9bc5ff69 (patch)
tree9ab232115b7ac6db89e4e759c16720fa8943e994 /tests/misc-tests.sh
parent9842d5769117eb46ad116b8e9fb65a5b8cf27856 (diff)
btrfs-progs: tests: support testname glob
To run a given test set the variable TEST like $ make test TEST=002-bad-transid $ make test TEST=002-* and only tests matching the value will be run. The pattern is glob and pased to 'find -name'. The convert tests do not follow the fsck and misc layout and are skipped if TEST is set. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'tests/misc-tests.sh')
-rwxr-xr-xtests/misc-tests.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/misc-tests.sh b/tests/misc-tests.sh
index 2ae99db9..1ed8850e 100755
--- a/tests/misc-tests.sh
+++ b/tests/misc-tests.sh
@@ -34,7 +34,8 @@ check_prereq btrfs
# The tests are driven by their custom script called 'test.sh'
-for i in $(find $TOP/tests/misc-tests -maxdepth 1 -mindepth 1 -type d | sort)
+for i in $(find $TOP/tests/misc-tests -maxdepth 1 -mindepth 1 -type d \
+ ${TEST:+-name "$TEST"} | sort)
do
echo " [TEST] $(basename $i)"
cd $i