blob: 14cbb60f1727c642e624c659d05bea8d39e07c13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/bash
FSCK_OPT=-fy
IMAGE=$test_dir/image.gz
CMDS=$test_dir/commands
test_description="replay fast commit journal"
gunzip < $IMAGE > $TMPFILE
# Run fsck to fix things?
EXP=$test_dir/expect
OUT=$test_name.log
$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
|