Whamcloud - gitweb
672829fe9b8913597e54f1fdfe8b93fae31ab4de
[tools/e2fsprogs.git] / tests / r_expand_full / script
1 if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then
2
3 FSCK_OPT=-fn
4 OUT=$test_name.log
5 EXP=$test_dir/expect
6 CONF=$TMPFILE.conf
7
8 #gzip -d < $EXP.gz > $EXP
9
10 cat > $CONF << ENDL
11 [fs_types]
12         ext4h = {
13                 features = has_journal,extent,huge_file,uninit_bg,dir_nlink,extra_isize,sparse_super,filetype,dir_index,ext_attr,^resize_inode,^meta_bg,^flex_bg
14                 blocksize = 1024
15                 inode_size = 256
16                 make_hugefiles = true
17                 hugefiles_dir = /
18                 hugefiles_slack = 0
19                 hugefiles_name = aaaaa
20                 hugefiles_digits = 4
21                 hugefiles_size = 1M
22                 zero_hugefiles = false
23         }
24 ENDL
25
26 if [ $(uname -s) = "Darwin" ]; then
27         # creates a 786MB filesystem
28         echo "$test_name: $DESCRIPTION: skipped for HFS+ (no sparse files)"
29         return 0
30 fi
31
32 echo "resize2fs test" > $OUT
33
34 MKE2FS_CONFIG=$CONF $MKE2FS -F -T ext4h $TMPFILE 786432 >> $OUT 2>&1
35 rm -rf $CONF
36
37 # dump and check
38 $DUMPE2FS -g $TMPFILE 2>&1 >> $OUT.before 2> /dev/null
39 $FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT 2>&1
40 status=$?
41 echo Exit status is $status >> $OUT
42
43 # convert it
44 echo "resize2fs test.img" >> $OUT
45 $DD if=/dev/zero of=$TMPFILE conv=notrunc bs=1 count=1 seek=3221225471 2> /dev/null
46 $RESIZE2FS -f $TMPFILE 2>&1 >> $OUT 2>&1
47 status=$?
48 echo Exit status is $status >> $OUT
49
50 # dump and check
51 $DUMPE2FS -g $TMPFILE 2>&1 >> $OUT.after 2> /dev/null
52 echo "Change in FS metadata:" >> $OUT
53 diff -u $OUT.before $OUT.after | tail -n +3 >> $OUT
54 $FSCK $FSCK_OPT -N test_filesys $TMPFILE >> $OUT 2>&1
55 status=$?
56 echo Exit status is $status >> $OUT
57
58 rm $TMPFILE
59
60 #
61 # Do the verification
62 #
63
64 sed -f $cmd_dir/filter.sed -e "s;$TMPFILE;test.img;" -e 's/test_filesys:.*//g' < $OUT > $OUT.new
65 mv $OUT.new $OUT
66
67 cmp -s $OUT $EXP
68 status=$?
69
70 if [ "$status" = 0 ] ; then
71         echo "$test_name: $test_description: ok"
72         touch $test_name.ok
73 else
74         echo "$test_name: $test_description: failed"
75         diff $DIFF_OPTS $EXP $OUT > $test_name.failed
76 fi
77
78 rm $OUT.before $OUT.after
79
80 unset IMAGE FSCK_OPT OUT EXP CONF
81
82 else #if test -x $RESIZE2FS_EXE -a -x $DEBUGFS_EXE; then
83         echo "$test_name: $test_description: skipped"
84 fi
85