~daniel-mehrmann/e2fsprogs/master

« back to all changes in this revision

Viewing changes to tests/j_short_revoke_trans/script

  • Committer: Daniel Mehrmann
  • Date: 2014-12-16 09:16:59 UTC
  • mfrom: (1.2.25)
  • Revision ID: daniel.mehrmann@gmx.de-20141216091659-ymhbl4ualba43vuc
Tags: 1.43-SN-2014-12-16-0ubuntu1
* Merge in snapshot from the maint branch 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if test -x $DEBUGFS_EXE; then
 
2
 
 
3
FSCK_OPT=-fy
 
4
OUT=$test_name.log
 
5
if [ -f $test_dir/expect.gz ]; then
 
6
        EXP=$test_name.tmp
 
7
        gunzip < $test_dir/expect.gz > $EXP1
 
8
else
 
9
        EXP=$test_dir/expect
 
10
fi
 
11
 
 
12
cp /dev/null $OUT
 
13
 
 
14
$MKE2FS -F -o Linux -b 4096 -O has_journal -T ext4 $TMPFILE 65536 2>&1 | sed -f $cmd_dir/filter.sed >> $OUT 2>&1
 
15
 
 
16
$FSCK -fy -N test_filesys $TMPFILE > $OUT.new 2>&1
 
17
status=$?
 
18
echo Exit status is $status >> $OUT.new
 
19
sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new >> $OUT
 
20
rm -f $OUT.new
 
21
 
 
22
bitmaps="$($DUMPE2FS $TMPFILE 2>&1 | grep 'bitmap at' | sed -e 's/^.*bitmap at \([0-9]*\).*$/\1/g' | tr '\n' ',')"
 
23
 
 
24
echo "debugfs write journal" >> $OUT
 
25
echo "jo" > $TMPFILE.cmd
 
26
echo "jw -b $bitmaps /dev/zero" >> $TMPFILE.cmd
 
27
echo "jc" >> $TMPFILE.cmd
 
28
echo "jo" >> $TMPFILE.cmd
 
29
echo "jw -r $bitmaps" >> $TMPFILE.cmd
 
30
echo "jc" >> $TMPFILE.cmd
 
31
$DEBUGFS_EXE -w -f $TMPFILE.cmd $TMPFILE 2>> $OUT.new > /dev/null
 
32
sed -f $cmd_dir/filter.sed < $OUT.new >> $OUT
 
33
rm -rf $OUT.new
 
34
 
 
35
test -d "$JOURNAL_DUMP_DIR" -a -w "$JOURNAL_DUMP_DIR" && cp "$TMPFILE" "$JOURNAL_DUMP_DIR/$test_name.img"
 
36
echo "logdump -c" > $TMPFILE.cmd
 
37
$DEBUGFS_EXE -f $TMPFILE.cmd $TMPFILE 2>&1 | sed -f $cmd_dir/filter.sed >> $OUT
 
38
rm -rf $TMPFILE.cmd
 
39
 
 
40
$FSCK -fy -N test_filesys $TMPFILE > $OUT.new 2>&1
 
41
status=$?
 
42
echo Exit status is $status >> $OUT.new
 
43
sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" $OUT.new >> $OUT
 
44
rm -f $OUT.new
 
45
 
 
46
rm -f $TMPFILE
 
47
 
 
48
cmp -s $OUT $EXP
 
49
status=$?
 
50
 
 
51
if [ "$status" = 0 ] ; then
 
52
        echo "$test_name: $test_description: ok"
 
53
        touch $test_name.ok
 
54
else
 
55
        echo "$test_name: $test_description: failed"
 
56
        diff $DIFF_OPTS $EXP $OUT > $test_name.failed
 
57
        rm -f $test_name.tmp
 
58
fi
 
59
 
 
60
unset IMAGE FSCK_OPT OUT EXP
 
61
 
 
62
else #if test -x $DEBUGFS_EXE; then
 
63
        echo "$test_name: $test_description: skipped"
 
64
fi