diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:25 +0000 |
commit | 464df1d5e5ab1322e2dd0a7796939fff1aeefa9a (patch) | |
tree | 6a403684e0978f0287d7f0ec0e5aab1fd31a59e1 /tests/u_compound_bad_rollback | |
parent | Initial commit. (diff) | |
download | e2fsprogs-upstream.tar.xz e2fsprogs-upstream.zip |
Adding upstream version 1.47.0.upstream/1.47.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/u_compound_bad_rollback')
-rw-r--r-- | tests/u_compound_bad_rollback/script | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/u_compound_bad_rollback/script b/tests/u_compound_bad_rollback/script new file mode 100644 index 0000000..f54da7f --- /dev/null +++ b/tests/u_compound_bad_rollback/script @@ -0,0 +1,62 @@ +test_description="e2undo with mke2fs/tune2fs/resize2fs/e2fsck -z" +if test -x $RESIZE2FS_EXE -a -x $E2UNDO_EXE; then + +TDB_FILE=${TMPDIR:-/tmp}/resize2fs-$(basename $TMPFILE).e2undo +OUT=$test_name.log +rm -f $TDB_FILE >/dev/null 2>&1 + +echo compound e2undo rollback test > $OUT + +dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1 +crc0=`$CRCSUM $TMPFILE` +echo $CRCSUM before mke2fs $crc0 >> $OUT + +echo mke2fs -q -F -o Linux -T ext4 -O ^metadata_csum,64bit -E lazy_itable_init=1 -b 1024 -z $TDB_FILE.0 $TMPFILE 256 >> $OUT +$MKE2FS -q -F -o Linux -T ext4 -O ^metadata_csum,64bit -E lazy_itable_init=1 -b 1024 -z $TDB_FILE.0 $TMPFILE 256 >> $OUT 2>&1 +crc1=`$CRCSUM $TMPFILE` +echo $CRCSUM after mke2fs $crc1 >> $OUT + +echo using tune2fs to test e2undo >> $OUT +$TUNE2FS -O metadata_csum -z $TDB_FILE.1 $TMPFILE >> $OUT 2>&1 +crc2=`$CRCSUM $TMPFILE` +echo $CRCSUM after tune2fs $crc2 >> $OUT + +echo using resize2fs to test e2undo >> $OUT +$RESIZE2FS -z $TDB_FILE.2 $TMPFILE 512 >> $OUT 2>&1 +crc3=`$CRCSUM $TMPFILE` +echo $CRCSUM after resize2fs $crc3 >> $OUT + +echo using e2fsck to test e2undo >> $OUT +$FSCK -f -y -D -z $TDB_FILE.3 $TMPFILE >> $OUT 2>&1 +crc4=`$CRCSUM $TMPFILE` +echo $CRCSUM after e2fsck $crc4 >> $OUT + +echo roll back mke2fs >> $OUT +$E2UNDO $TDB_FILE.0 $TMPFILE >> $OUT 2>&1 +crc0_2=`$CRCSUM $TMPFILE` +echo $CRCSUM after e2undo mke2fs $crc0_2 >> $OUT + +echo roll back tune2fs >> $OUT +$E2UNDO $TDB_FILE.1 $TMPFILE >> $OUT 2>&1 +crc1_2=`$CRCSUM $TMPFILE` +echo $CRCSUM after e2undo tune2fs $crc1_2 >> $OUT + +echo roll back resize2fs >> $OUT +$E2UNDO $TDB_FILE.2 $TMPFILE >> $OUT 2>&1 +crc2_2=`$CRCSUM $TMPFILE` +echo $CRCSUM after e2undo resize2fs $crc2_2 >> $OUT + +echo roll back e2fsck >> $OUT +$E2UNDO $TDB_FILE.3 $TMPFILE >> $OUT 2>&1 +crc3_2=`$CRCSUM $TMPFILE` +echo $CRCSUM after e2undo e2fsck $crc3_2 >> $OUT + +if [ $crc4 = $crc0_2 ] && [ $crc4 = $crc1_2 ] && [ $crc4 = $crc2_2 ] && [ $crc3 = $crc3_2 ]; then + echo "$test_name: $test_description: ok" + touch $test_name.ok +else + ln -f $test_name.log $test_name.failed + echo "$test_name: $test_description: failed" +fi +rm -f $TDB_FILE.0 $TDB_FILE.1 $TDB_FILE.2 $TDB_FILE.3 $TMPFILE +fi |