]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - tests/run_e2fsck
tests: use make rules to run tests in parallel
[thirdparty/e2fsprogs.git] / tests / run_e2fsck
1 if [ "$DESCRIPTION"x != x ]; then
2 test_description="$DESCRIPTION"
3 fi
4 if [ "$IMAGE"x = x ]; then
5 IMAGE=$test_dir/image.gz
6 fi
7
8 if [ "$FSCK_OPT"x = x ]; then
9 FSCK_OPT=-yf
10 fi
11
12 if [ "$SECOND_FSCK_OPT"x = x ]; then
13 SECOND_FSCK_OPT=-yf
14 fi
15
16 if [ "$OUT1"x = x ]; then
17 OUT1=$test_name.1.log
18 fi
19
20 if [ "$OUT2"x = x ]; then
21 OUT2=$test_name.2.log
22 fi
23
24 if [ "$EXP1"x = x ]; then
25 if [ -f $test_dir/expect.1.gz ]; then
26 EXP1=$test_name.1.tmp
27 gunzip < $test_dir/expect.1.gz > $EXP1
28 else
29 EXP1=$test_dir/expect.1
30 fi
31 fi
32
33 if [ "$EXP2"x = x ]; then
34 if [ -f $test_dir/expect.2.gz ]; then
35 EXP2=$test_name.2.tmp
36 gunzip < $test_dir/expect.2.gz > $EXP2
37 else
38 EXP2=$test_dir/expect.2
39 fi
40 fi
41
42 if [ "$SKIP_GUNZIP" != "true" ] ; then
43 gunzip < $IMAGE > $TMPFILE
44 fi
45
46 cp /dev/null $OUT1
47
48 eval $PREP_CMD
49
50 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT1.new 2>&1
51 status=$?
52 echo Exit status is $status >> $OUT1.new
53 sed -e '1d' $OUT1.new | sed -e '/^JFS DEBUG:/d' | \
54 sed -e "s;$TMPFILE;test.img;" | tr -d \\015 >> $OUT1
55 rm -f $OUT1.new
56
57 if [ "$ONE_PASS_ONLY" != "true" ]; then
58 $FSCK $SECOND_FSCK_OPT -N test_filesys $TMPFILE > $OUT2.new 2>&1
59 status=$?
60 echo Exit status is $status >> $OUT2.new
61 sed -e '1d' $OUT2.new | sed -e '/^JFS DEBUG:/d' | \
62 sed -e "s;$TMPFILE;test.img;" > $OUT2
63 rm -f $OUT2.new
64 fi
65
66 eval $AFTER_CMD
67
68 if [ "$SKIP_VERIFY" != "true" ] ; then
69 rm -f $test_name.ok $test_name.failed
70 cmp -s $OUT1 $EXP1
71 status1=$?
72 if [ "$ONE_PASS_ONLY" != "true" ]; then
73 cmp -s $OUT2 $EXP2
74 status2=$?
75 else
76 status2=0
77 fi
78 if [ "$PASS_ZERO" = "true" ]; then
79 cmp -s $test_name.0.log $test_dir/expect.0
80 status3=$?
81 else
82 status3=0
83 fi
84
85 if [ "$status1" -eq 0 -a "$status2" -eq 0 -a "$status3" -eq 0 ] ; then
86 echo "$test_name: $test_description: ok"
87 touch $test_name.ok
88 else
89 echo "$test_name: $test_description: failed"
90 diff $DIFF_OPTS $EXP1 $OUT1 > $test_name.failed
91 if [ "$ONE_PASS_ONLY" != "true" ]; then
92 diff $DIFF_OPTS $EXP2 $OUT2 >> $test_name.failed
93 fi
94 fi
95 rm -f tmp_expect
96 fi
97
98 if [ "$SKIP_CLEANUP" != "true" ] ; then
99 unset IMAGE FSCK_OPT SECOND_FSCK_OPT OUT1 OUT2 EXP1 EXP2
100 unset SKIP_VERIFY SKIP_CLEANUP SKIP_GUNZIP ONE_PASS_ONLY PREP_CMD
101 unset DESCRIPTION SKIP_UNLINK AFTER_CMD PASS_ZERO
102 fi
103