Lines Matching refs:OUT
6 OUT=$test_name.log
13 echo "debugfs create special files" > $OUT.new
17 echo "mke2fs -Fq -b 1024 test.img 512" >> $OUT.new
21 echo Exit status is $status >> $OUT.new
35 echo "debugfs -R ''stat foo'' -w test.img" >> $OUT.new
36 $DEBUGFS -R "stat foo" -w $TMPFILE >> $OUT.new 2>&1
38 echo Exit status is $status >> $OUT.new
40 echo "debugfs -R ''stat foo2'' -w test.img" >> $OUT.new
41 $DEBUGFS -R "stat foo2" -w $TMPFILE >> $OUT.new 2>&1
43 echo Exit status is $status >> $OUT.new
45 echo "debugfs -R ''block_dump 28'' -w test.img" >> $OUT.new
46 $DEBUGFS -R "block_dump 28" -w $TMPFILE >> $OUT.new 2>&1
48 echo Exit status is $status >> $OUT.new
50 echo "debugfs -R ''stat pipe'' -w test.img" >> $OUT.new
51 $DEBUGFS -R "stat pipe" -w $TMPFILE >> $OUT.new 2>&1
53 echo Exit status is $status >> $OUT.new
55 echo "debugfs -R ''stat sda'' -w test.img" >> $OUT.new
56 $DEBUGFS -R "stat sda" -w $TMPFILE >> $OUT.new 2>&1
58 echo Exit status is $status >> $OUT.new
60 echo "debugfs -R ''stat null'' -w test.img" >> $OUT.new
61 $DEBUGFS -R "stat null" -w $TMPFILE >> $OUT.new 2>&1
63 echo Exit status is $status >> $OUT.new
65 echo e2fsck $VERIFY_FSCK_OPT -N test_filesys >> $OUT.new
66 $FSCK $VERIFY_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1
68 echo Exit status is $status >> $OUT.new
69 sed -f $cmd_dir/filter.sed $OUT.new > $OUT
75 rm -f $TMPFILE $OUT.new
76 cmp -s $OUT $EXP
84 diff $DIFF_OPTS $EXP $OUT > $test_name.failed
87 unset VERIFY_FSCK_OPT NATIVE_FSCK_OPT OUT EXP TEST_DATA VERIFY_DATA