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/t_format_csum_seed | |
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/t_format_csum_seed')
-rw-r--r-- | tests/t_format_csum_seed/expect | 10 | ||||
-rwxr-xr-x | tests/t_format_csum_seed/script | 34 |
2 files changed, 44 insertions, 0 deletions
diff --git a/tests/t_format_csum_seed/expect b/tests/t_format_csum_seed/expect new file mode 100644 index 0000000..39e6d6a --- /dev/null +++ b/tests/t_format_csum_seed/expect @@ -0,0 +1,10 @@ +create fs with csum_seed +Filesystem UUID: 6b33f586-a183-4383-921d-30da3fef2e5c +Checksum seed: 0x3ba62721 +change uuid +Filesystem UUID: 1dd136c6-e47a-4833-9bf5-519f8aacabe4 +Checksum seed: 0x3ba62721 +check filesystem +fsck returns 0 +Filesystem UUID: 1dd136c6-e47a-4833-9bf5-519f8aacabe4 +Checksum seed: 0x3ba62721 diff --git a/tests/t_format_csum_seed/script b/tests/t_format_csum_seed/script new file mode 100755 index 0000000..3038785 --- /dev/null +++ b/tests/t_format_csum_seed/script @@ -0,0 +1,34 @@ +test_description="format with csum_seed" + +trap "rm -f $TMPFILE $TMPFILE.conf" EXIT INT QUIT +dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1 +OUT=$test_name.log +EXP=$test_dir/expect +rm -f $OUT + +# Test command line option +echo "create fs with csum_seed" >> $OUT +$MKE2FS -o Linux -O metadata_csum,metadata_csum_seed -U 6b33f586-a183-4383-921d-30da3fef2e5c -F $TMPFILE > /dev/null 2>&1 +$DUMPE2FS $TMPFILE 2>&1 | egrep '(Checksum seed:|UUID)' >> $OUT + +echo "change uuid" >> $OUT +$TUNE2FS -U 1dd136c6-e47a-4833-9bf5-519f8aacabe4 $TMPFILE > /dev/null 2>&1 +$DUMPE2FS $TMPFILE 2>&1 | egrep '(Checksum seed:|UUID)' >> $OUT + +echo "check filesystem" >> $OUT +$FSCK $FSCK_OPT -fy $TMPFILE > /dev/null 2>&1 +echo "fsck returns $?" >> $OUT +$DUMPE2FS $TMPFILE 2>&1 | egrep '(Checksum seed:|UUID)' >> $OUT + +cmp -s $OUT $EXP +status=$? + +if [ "$status" = 0 ] ; then + echo "$test_name: $test_description: ok" + touch $test_name.ok +else + echo "$test_name: $test_description: failed" + diff $DIFF_OPTS $EXP $OUT > $test_name.failed + rm -f $test_name.tmp +fi + |