Home | History | Annotate | Download | only in f_detect_junk

Lines Matching refs:OUT

17 OUT=$test_name.log
20 echo "*** e2fsck" > $OUT
21 $FSCK $FSCK_OPT $TMPFILE >> $OUT 2>&1
22 echo "*** debugfs" >> $OUT
23 test -x $DEBUGFS_EXE && $DEBUGFS_EXE -R 'quit' $TMPFILE >> $OUT 2>&1
24 echo "*** tune2fs" >> $OUT
25 $TUNE2FS -i 0 $TMPFILE >> $OUT 2>&1
26 echo "*** mke2fs" >> $OUT
27 $MKE2FS -n $TMPFILE >> $OUT 2>&1
29 sed -f $cmd_dir/filter.sed -e "s|$TMPFILE|test.img|g" < $OUT > $OUT.new
30 mv $OUT.new $OUT
32 # Figure out what happened
33 if cmp -s $EXP $OUT; then
38 diff -u $EXP $OUT >> $test_name.failed
40 unset EXP OUT FSCK_OPT IMAGE