btrfs-progs: tests: log the test name in results file
[platform/upstream/btrfs-progs.git] / tests / fsck-tests.sh
1 #!/bin/bash
2 #
3 # loop through all of our bad images and make sure fsck repairs them properly
4 #
5 # It's GPL, same as everything else in this tree.
6 #
7
8 unset TOP
9 unset LANG
10 LANG=C
11 SCRIPT_DIR=$(dirname $(realpath $0))
12 TOP=$(realpath $SCRIPT_DIR/../)
13 TEST_DEV=${TEST_DEV:-}
14 TEST_MNT=${TEST_MNT:-$TOP/tests/mnt}
15 RESULTS="$TOP/tests/fsck-tests-results.txt"
16
17 source $TOP/tests/common
18
19 # Allow child test to use $TOP and $RESULTS
20 export TOP
21 export RESULTS
22 # For custom script needs to verfiy recovery
23 export TEST_MNT
24 export LANG
25
26 rm -f $RESULTS
27 mkdir -p $TEST_MNT || _fail "unable to create mount point on $TEST_MNT"
28
29 # test rely on corrupting blocks tool
30 check_prereq btrfs-corrupt-block
31 check_prereq btrfs-image
32 check_prereq btrfs
33
34 # Each dir contains one type of error for btrfsck test.
35 # Each dir must be one of the following 2 types:
36 # 1) Only btrfs-image dump
37 #    Only contains one or several btrfs-image dumps (.img)
38 #    Each image will be tested by generic test routine
39 #    (btrfsck --repair and btrfsck).
40 #    This is for case that btree-healthy images.
41 # 2) Custom test script
42 #    This dir contains test.sh which will do custom image
43 #    generation/check/verification.
44 #    This is for case btrfs-image can't dump or case needs extra
45 #    check/verify
46
47 for i in $(find $TOP/tests/fsck-tests -maxdepth 1 -mindepth 1 -type d | sort)
48 do
49         echo "    [TEST]   $(basename $i)"
50         cd $i
51         echo "=== Entering $i" >> $RESULTS
52         if [ -x test.sh ]; then
53                 # Type 2
54                 ./test.sh
55                 if [ $? -ne 0 ]; then
56                         _fail "test failed for case $(basename $i)"
57                 fi
58         else
59                 # Type 1
60                 check_all_images `pwd`
61         fi
62         cd $TOP
63 done