27 lines
		
	
	
		
			594 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			594 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
#!/bin/bash
 | 
						|
 | 
						|
FSCK_OPT=-fy
 | 
						|
IMAGE=$test_dir/image.gz
 | 
						|
CMDS=$test_dir/commands
 | 
						|
 | 
						|
gunzip < $IMAGE > $TMPFILE
 | 
						|
 | 
						|
# Run fsck to fix things?
 | 
						|
EXP=$test_dir/expect
 | 
						|
OUT=$test_name.log
 | 
						|
 | 
						|
cp $TMPFILE /tmp/debugthis
 | 
						|
$FSCK $FSCK_OPT -E journal_only -N test_filesys $TMPFILE 2>/dev/null | head -n 1000 | tail -n +2 > $OUT
 | 
						|
echo "Exit status is $?" >> $OUT
 | 
						|
 | 
						|
$DEBUGFS -f $CMDS $TMPFILE >> $OUT 2>/dev/null
 | 
						|
 | 
						|
# Figure out what happened
 | 
						|
if cmp -s $EXP $OUT; then
 | 
						|
	echo "$test_name: $test_description: ok"
 | 
						|
	touch $test_name.ok
 | 
						|
else
 | 
						|
	echo "$test_name: $test_description: failed"
 | 
						|
	diff -u $EXP $OUT >> $test_name.failed
 | 
						|
fi
 |