1#!/bin/bash 2 3FSCK_OPT=-fy 4IMAGE=$test_dir/image.bz2 5 6bzip2 -d < $IMAGE > $TMPFILE 7 8# Run fsck to fix things? 9EXP1=$test_dir/expect.1 10OUT1=$test_name.1.log 11 12$FSCK $FSCK_OPT -N test_filesys $TMPFILE 2>&1 | head -n 1000 | tail -n +2 > $OUT1 13echo "Exit status is $?" >> $OUT1 14 15# Run a second time 16EXP2=$test_dir/expect.2 17OUT2=$test_name.2.log 18 19$FSCK $FSCK_OPT -N test_filesys $TMPFILE 2>&1 | head -n 1000 | tail -n +2 > $OUT2 20echo "Exit status is $?" >> $OUT2 21 22# Figure out what happened 23if cmp -s $EXP1 $OUT1 && cmp -s $EXP2 $OUT2; then 24 echo "$test_name: $test_description: ok" 25 touch $test_name.ok 26else 27 echo "$test_name: $test_description: failed" 28 diff -u $EXP1 $OUT1 >> $test_name.failed 29 diff -u $EXP2 $OUT2 >> $test_name.failed 30fi 31