• Home
  • Raw
  • Download

Lines Matching refs:OUT

3 OUT=$test_name.log
10 echo "debugfs create special files" > $OUT
14 echo "mke2fs -Fq -b 1024 test.img 512" >> $OUT
18 echo Exit status is $status >> $OUT
32 echo "debugfs -R ''stat foo'' -w test.img" > $OUT.new
33 $DEBUGFS -R "stat foo" -w $TMPFILE >> $OUT.new 2>&1
35 echo Exit status is $status >> $OUT.new
36 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT
38 echo "debugfs -R ''stat foo2'' -w test.img" > $OUT.new
39 $DEBUGFS -R "stat foo2" -w $TMPFILE >> $OUT.new 2>&1
41 echo Exit status is $status >> $OUT.new
42 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT
44 echo "debugfs -R ''block_dump 28'' -w test.img" > $OUT.new
45 $DEBUGFS -R "block_dump 28" -w $TMPFILE >> $OUT.new 2>&1
47 echo Exit status is $status >> $OUT.new
48 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT
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
54 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT
56 echo "debugfs -R ''stat sda'' -w test.img" > $OUT.new
57 $DEBUGFS -R "stat sda" -w $TMPFILE >> $OUT.new 2>&1
59 echo Exit status is $status >> $OUT.new
60 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT
62 echo "debugfs -R ''stat null'' -w test.img" > $OUT.new
63 $DEBUGFS -R "stat null" -w $TMPFILE >> $OUT.new 2>&1
65 echo Exit status is $status >> $OUT.new
66 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT
68 echo e2fsck $VERIFY_FSCK_OPT -N test_filesys > $OUT.new
69 $FSCK $VERIFY_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1
71 echo Exit status is $status >> $OUT.new
72 sed -f $cmd_dir/filter.sed $OUT.new >> $OUT
78 rm -f $TMPFILE $OUT.new
79 cmp -s $OUT $EXP
87 diff $DIFF_OPTS $EXP $OUT > $test_name.failed
90 unset VERIFY_FSCK_OPT NATIVE_FSCK_OPT OUT EXP TEST_DATA VERIFY_DATA