Lines Matching refs:OUT
4 OUT=$test_name.log
12 cp /dev/null $OUT
16 echo mke2fs -q -F -o Linux -b 1024 -g 256 test.img 1024 > $OUT
19 grep -v "whichever comes first" >> $OUT
21 echo resize2fs -p test.img 10000 >> $OUT
22 $RESIZE2FS -p $TMPFILE 10000 2>&1 | sed -e '1d' >> $OUT
24 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1
26 echo Exit status is $status >> $OUT.new
27 sed -e '1d' $OUT.new | sed -e '/^JFS DEBUG:/d' | tr -d \\015 >> $OUT
28 rm -f $OUT.new
35 echo dumpe2fs test.img >> $OUT
36 $DUMPE2FS $TMPFILE 2>&1 | sed -f $cmd_dir/filter_dumpe2fs >> $OUT
38 echo "--------------------------------" >> $OUT
40 echo resize2fs -p test.img 20000 >> $OUT
41 $RESIZE2FS -p $TMPFILE 20000 2>&1 | sed -e '1d' >> $OUT
43 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1
45 echo Exit status is $status >> $OUT.new
46 sed -e '1d' $OUT.new | sed -e '/^JFS DEBUG:/d' | tr -d \\015 >> $OUT
47 rm -f $OUT.new
54 echo dumpe2fs test.img >> $OUT
55 $DUMPE2FS $TMPFILE 2>&1 | sed -f $cmd_dir/filter_dumpe2fs >> $OUT
57 echo "--------------------------------" >> $OUT
59 echo resize2fs -p test.img 30000 >> $OUT
60 $RESIZE2FS -p $TMPFILE 30000 2>&1 | sed -e '1d' >> $OUT
62 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1
64 echo Exit status is $status >> $OUT.new
65 sed -e '1d' $OUT.new | sed -e '/^JFS DEBUG:/d' | tr -d \\015 >> $OUT
66 rm -f $OUT.new
73 echo dumpe2fs test.img >> $OUT
74 $DUMPE2FS $TMPFILE 2>&1 | sed -f $cmd_dir/filter_dumpe2fs >> $OUT
76 echo "--------------------------------" >> $OUT
78 echo resize2fs -p test.img 40000 >> $OUT
79 $RESIZE2FS -p $TMPFILE 40000 2>&1 | sed -e '1d' >> $OUT
81 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1
83 echo Exit status is $status >> $OUT.new
84 sed -e '1d' $OUT.new | sed -e '/^JFS DEBUG:/d' | tr -d \\015 >> $OUT
85 rm -f $OUT.new
92 echo dumpe2fs test.img >> $OUT
93 $DUMPE2FS $TMPFILE 2>&1 | sed -f $cmd_dir/filter_dumpe2fs >> $OUT
97 cmp -s $OUT $EXP
105 diff $DIFF_OPTS $EXP $OUT > $test_name.failed
109 unset IMAGE FSCK_OPT OUT EXP