Whamcloud - gitweb
tests: don't run sed multiple times on test output
[tools/e2fsprogs.git] / tests / f_collapse_extent_tree / script
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 eval $PREP_CMD
47
48 echo 'ex /a' > $TMPFILE.cmd
49 $DEBUGFS -f $TMPFILE.cmd $TMPFILE > $OUT1.new 2>&1
50 rm -f $TMPFILE.cmd
51 $FSCK $FSCK_OPT  -N test_filesys $TMPFILE >> $OUT1.new 2>&1
52 status=$?
53 echo Exit status is $status >> $OUT1.new
54 sed -f $cmd_dir/filter.sed $OUT1.new > $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         echo 'ex /a' > $TMPFILE.cmd
62         $DEBUGFS -f $TMPFILE.cmd $TMPFILE >> $OUT2.new 2>&1
63         sed -f $cmd_dir/filter.sed $OUT2.new > $OUT2
64         rm -f $TMPFILE.cmd $OUT2.new
65 fi
66
67 eval $AFTER_CMD
68
69 if [ "$SKIP_VERIFY" != "true" ] ; then
70         rm -f $test_name.ok $test_name.failed
71         cmp -s $OUT1 $EXP1
72         status1=$?
73         if [ "$ONE_PASS_ONLY" != "true" ]; then
74                 cmp -s $OUT2 $EXP2
75                 status2=$?
76         else
77                 status2=0
78         fi
79         if [ "$PASS_ZERO" = "true" ]; then
80                 cmp -s $test_name.0.log $test_dir/expect.0
81                 status3=$?
82         else
83                 status3=0
84         fi
85
86         if [ -z "$test_description" ] ; then
87                 description="$test_name"
88         else
89                 description="$test_name: $test_description"
90         fi
91
92         if [ "$status1" -eq 0 -a "$status2" -eq 0 -a "$status3" -eq 0 ] ; then
93                 echo "$description: ok"
94                 touch $test_name.ok
95         else
96                 echo "$description: failed"
97                 rm -f $test_name.failed
98                 if [ "$PASS_ZERO" = "true" ]; then
99                         diff $DIFF_OPTS $test_dir/expect.0 \
100                                 $test_name.0.log >> $test_name.failed
101                 fi
102                 diff $DIFF_OPTS $EXP1 $OUT1 >> $test_name.failed
103                 if [ "$ONE_PASS_ONLY" != "true" ]; then
104                         diff $DIFF_OPTS $EXP2 $OUT2 >> $test_name.failed
105                 fi
106         fi
107         rm -f tmp_expect
108 fi
109
110 if [ "$SKIP_CLEANUP" != "true" ] ; then
111         unset IMAGE FSCK_OPT SECOND_FSCK_OPT OUT1 OUT2 EXP1 EXP2 
112         unset SKIP_VERIFY SKIP_CLEANUP SKIP_GUNZIP ONE_PASS_ONLY PREP_CMD
113         unset DESCRIPTION SKIP_UNLINK AFTER_CMD PASS_ZERO
114 fi
115