btrfs-progs: tests, adjust alignment of the pretty command name
[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 RESULT="$top/tests/fsck-tests-results.txt"
16
17 source $top/tests/common
18
19 # Allow child test to use $top and $RESULT
20 export top
21 export RESULT
22 # For custom script needs to verfiy recovery
23 export TEST_MNT
24 export LANG
25
26 rm -f $RESULT
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         if [ -x test.sh ]; then
52                 # Type 2
53                 ./test.sh
54                 if [ $? -ne 0 ]; then
55                         _fail "test failed for case $(basename $i)"
56                 fi
57         else
58                 # Type 1
59                 check_all_images `pwd`
60         fi
61         cd $top
62 done