diff options
Diffstat (limited to 'tests/f_detect_xfs')
-rw-r--r-- | tests/f_detect_xfs/expect | 25 | ||||
-rw-r--r-- | tests/f_detect_xfs/expect.nodebugfs | 24 | ||||
-rw-r--r-- | tests/f_detect_xfs/image.bz2 | bin | 0 -> 450 bytes | |||
-rw-r--r-- | tests/f_detect_xfs/name | 1 | ||||
-rw-r--r-- | tests/f_detect_xfs/script | 37 |
5 files changed, 87 insertions, 0 deletions
diff --git a/tests/f_detect_xfs/expect b/tests/f_detect_xfs/expect new file mode 100644 index 0000000..a48e8af --- /dev/null +++ b/tests/f_detect_xfs/expect @@ -0,0 +1,25 @@ +*** e2fsck +ext2fs_open2: Bad magic number in super-block +../e2fsck/e2fsck: Superblock invalid, trying backup blocks... +../e2fsck/e2fsck: Bad magic number in super-block while trying to open test.img + +The superblock could not be read or does not describe a valid ext2/ext3/ext4 +filesystem. If the device is valid and it really contains an ext2/ext3/ext4 +filesystem (and not swap or ufs or something else), then the superblock +is corrupt, and you might try running e2fsck with an alternate superblock: + e2fsck -b 8193 <device> + or + e2fsck -b 32768 <device> + +test.img contains a xfs file system labelled 'test_filsys' +*** debugfs +debugfs: Bad magic number in super-block while trying to open test.img +test.img contains a xfs file system labelled 'test_filsys' +*** tune2fs +../misc/tune2fs: Bad magic number in super-block while trying to open test.img +test.img contains a xfs file system labelled 'test_filsys' +*** mke2fs +Creating filesystem with 16384 1k blocks and 4096 inodes +Superblock backups stored on blocks: + 8193 + diff --git a/tests/f_detect_xfs/expect.nodebugfs b/tests/f_detect_xfs/expect.nodebugfs new file mode 100644 index 0000000..26a8a4a --- /dev/null +++ b/tests/f_detect_xfs/expect.nodebugfs @@ -0,0 +1,24 @@ +*** e2fsck +ext2fs_open2: Bad magic number in super-block +../e2fsck/e2fsck: Superblock invalid, trying backup blocks... +../e2fsck/e2fsck: Bad magic number in super-block while trying to open test.img + +The superblock could not be read or does not describe a valid ext2/ext3/ext4 +filesystem. If the device is valid and it really contains an ext2/ext3/ext4 +filesystem (and not swap or ufs or something else), then the superblock +is corrupt, and you might try running e2fsck with an alternate superblock: + e2fsck -b 8193 <device> + or + e2fsck -b 32768 <device> + +test.img contains a xfs file system labelled 'test_filsys' +*** debugfs +*** tune2fs +../misc/tune2fs: Bad magic number in super-block while trying to open test.img +test.img contains a xfs file system labelled 'test_filsys' +*** mke2fs +128-byte inodes cannot handle dates beyond 2038 and are deprecated +Creating filesystem with 16384 1k blocks and 4096 inodes +Superblock backups stored on blocks: + 8193 + diff --git a/tests/f_detect_xfs/image.bz2 b/tests/f_detect_xfs/image.bz2 Binary files differnew file mode 100644 index 0000000..9dc5e44 --- /dev/null +++ b/tests/f_detect_xfs/image.bz2 diff --git a/tests/f_detect_xfs/name b/tests/f_detect_xfs/name new file mode 100644 index 0000000..d5b9b82 --- /dev/null +++ b/tests/f_detect_xfs/name @@ -0,0 +1 @@ +detect xfs filesystem diff --git a/tests/f_detect_xfs/script b/tests/f_detect_xfs/script new file mode 100644 index 0000000..bd2c1e8 --- /dev/null +++ b/tests/f_detect_xfs/script @@ -0,0 +1,37 @@ +#!/bin/bash + +FSCK_OPT=-fn +IMAGE=$test_dir/image.bz2 + +bzip2 -d < $IMAGE > $TMPFILE + +# Run fsck to fix things? +if [ -x $DEBUGFS_EXE ]; then + EXP=$test_dir/expect +else + EXP=$test_dir/expect.nodebugfs +fi +OUT=$test_name.log +rm -f $test_name.failed $test_name.ok + +echo "*** e2fsck" > $OUT +$FSCK $FSCK_OPT $TMPFILE >> $OUT 2>&1 +echo "*** debugfs" >> $OUT +test -x $DEBUGFS_EXE && $DEBUGFS -R 'quit' $TMPFILE >> $OUT 2>&1 +echo "*** tune2fs" >> $OUT +$TUNE2FS -i 0 $TMPFILE >> $OUT 2>&1 +echo "*** mke2fs" >> $OUT +$MKE2FS -n -b 1024 $TMPFILE >> $OUT 2>&1 + +sed -f $cmd_dir/filter.sed < $OUT > $OUT.new +mv $OUT.new $OUT + +# 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 +unset EXP OUT FSCK_OPT IMAGE |