Home | History | Annotate | Download | only in f_itable_collision
      1 #!/bin/bash
      2 
      3 # Run this test with a specific time, because we're crosslinking an extent tree
      4 # block with the inode table.  When fsck sets dtime to now, we want "now" to be
      5 # our preprogrammed value.
      6 
      7 FSCK_OPT=-fy
      8 IMAGE=$test_dir/image.gz
      9 E2FSCK_TIME=4294967294
     10 export E2FSCK_TIME
     11 
     12 gzip -d < $IMAGE > $TMPFILE
     13 
     14 # Run fsck to fix things?
     15 EXP1=$test_dir/expect.1
     16 OUT1=$test_name.1.log
     17 
     18 $FSCK $FSCK_OPT -N test_filesys $TMPFILE 2>&1 | tail -n +2 > $OUT1
     19 echo "Exit status is $?" >> $OUT1
     20 
     21 # Run a second time
     22 EXP2=$test_dir/expect.2
     23 OUT2=$test_name.2.log
     24 
     25 $FSCK $FSCK_OPT -N test_filesys $TMPFILE 2>&1 | tail -n +2 > $OUT2
     26 echo "Exit status is $?" >> $OUT2
     27 
     28 # Figure out what happened
     29 if cmp -s $EXP1 $OUT1 && cmp -s $EXP2 $OUT2; then
     30 	echo "$test_name: $test_description: ok"
     31 	touch $test_name.ok
     32 else
     33 	echo "$test_name: $test_description: failed"
     34 	diff -u $EXP1 $OUT1 >> $test_name.failed
     35 	diff -u $EXP2 $OUT2 >> $test_name.failed
     36 fi
     37