mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-06 17:21:57 +00:00
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>
This commit is contained in:
parent
9842d57691
commit
a5afa55a30
@ -52,6 +52,11 @@ convert_test() {
|
|||||||
run_check $TOP/btrfs-show-super $IMAGE
|
run_check $TOP/btrfs-show-super $IMAGE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ! [ -z "$TEST" ]; then
|
||||||
|
echo " [TEST] skipped all convert tests, TEST=$TEST"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
for feature in '' 'extref' 'skinny-metadata' 'no-holes'; do
|
for feature in '' 'extref' 'skinny-metadata' 'no-holes'; do
|
||||||
convert_test "$feature" "ext2 4k nodesize" 4096 mke2fs -b 4096
|
convert_test "$feature" "ext2 4k nodesize" 4096 mke2fs -b 4096
|
||||||
convert_test "$feature" "ext3 4k nodesize" 4096 mke2fs -j -b 4096
|
convert_test "$feature" "ext3 4k nodesize" 4096 mke2fs -j -b 4096
|
||||||
|
@ -64,7 +64,8 @@ run_one_test() {
|
|||||||
# This is for case btrfs-image can't dump or case needs extra
|
# This is for case btrfs-image can't dump or case needs extra
|
||||||
# check/verify
|
# check/verify
|
||||||
|
|
||||||
for i in $(find $TOP/tests/fsck-tests -maxdepth 1 -mindepth 1 -type d | sort)
|
for i in $(find $TOP/tests/fsck-tests -maxdepth 1 -mindepth 1 -type d \
|
||||||
|
${TEST:+-name "$TEST"} | sort)
|
||||||
do
|
do
|
||||||
run_one_test "$i"
|
run_one_test "$i"
|
||||||
done
|
done
|
||||||
|
@ -34,7 +34,8 @@ check_prereq btrfs
|
|||||||
|
|
||||||
# The tests are driven by their custom script called 'test.sh'
|
# 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
|
do
|
||||||
echo " [TEST] $(basename $i)"
|
echo " [TEST] $(basename $i)"
|
||||||
cd $i
|
cd $i
|
||||||
|
Loading…
Reference in New Issue
Block a user