From 464df1d5e5ab1322e2dd0a7796939fff1aeefa9a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:49:25 +0200 Subject: Adding upstream version 1.47.0. Signed-off-by: Daniel Baumann --- tests/d_loaddump/expect | 18 +++++++++++++ tests/d_loaddump/name | 1 + tests/d_loaddump/script | 67 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 86 insertions(+) create mode 100644 tests/d_loaddump/expect create mode 100644 tests/d_loaddump/name create mode 100644 tests/d_loaddump/script (limited to 'tests/d_loaddump') diff --git a/tests/d_loaddump/expect b/tests/d_loaddump/expect new file mode 100644 index 0000000..de90526 --- /dev/null +++ b/tests/d_loaddump/expect @@ -0,0 +1,18 @@ +debugfs load/dump test +mke2fs -Fq -b 1024 test.img 512 +Exit status is 0 +debugfs -R ''write d_loaddump.tmp test_data'' -w test.img +Allocated inode: 12 +Exit status is 0 +e2fsck -yf -N test_filesys +Pass 1: Checking inodes, blocks, and sizes +Pass 2: Checking directory structure +Pass 3: Checking directory connectivity +Pass 4: Checking reference counts +Pass 5: Checking group summary information +test_filesys: 12/64 files (0.0% non-contiguous), 166/512 blocks +Exit status is 0 +debugfs -R ''dump test_data d_loaddump.ver.tmp'' test.img +Exit status is 0 +cmp d_loaddump.tmp d_loaddump.ver.tmp +Exit status is 0 diff --git a/tests/d_loaddump/name b/tests/d_loaddump/name new file mode 100644 index 0000000..025ec3b --- /dev/null +++ b/tests/d_loaddump/name @@ -0,0 +1 @@ +debugfs load/dump test diff --git a/tests/d_loaddump/script b/tests/d_loaddump/script new file mode 100644 index 0000000..ace3372 --- /dev/null +++ b/tests/d_loaddump/script @@ -0,0 +1,67 @@ +if ! test -x $DEBUGFS_EXE; then + echo "$test_name: $test_description: skipped (no debugfs)" + return 0 +fi + +OUT=$test_name.log +EXP=$test_dir/expect +VERIFY_FSCK_OPT=-yf + +TEST_DATA=$test_name.tmp +VERIFY_DATA=$test_name.ver.tmp + +echo "debugfs load/dump test" > $OUT.new + +dd if=/dev/zero of=$TMPFILE bs=1k count=512 > /dev/null 2>&1 + +echo "mke2fs -Fq -b 1024 test.img 512" >> $OUT.new + +$MKE2FS -Fq -b 1024 $TMPFILE 512 > /dev/null 2>&1 +status=$? +echo Exit status is $status >> $OUT.new + +dd if=$TEST_BITS of=$TEST_DATA bs=128k count=1 conv=sync > /dev/null 2>&1 +echo "file fragment odd size" >> $TEST_DATA + +echo "debugfs -R ''write $TEST_DATA test_data'' -w test.img" >> $OUT.new +$DEBUGFS -R "write $TEST_DATA test_data" -w $TMPFILE >> $OUT.new 2>&1 +status=$? +echo Exit status is $status >> $OUT.new + +echo e2fsck $VERIFY_FSCK_OPT -N test_filesys >> $OUT.new +$FSCK $VERIFY_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1 +status=$? +echo Exit status is $status >> $OUT.new + +echo "debugfs -R ''dump test_data $VERIFY_DATA'' test.img" >> $OUT.new +$DEBUGFS -R "dump test_data $VERIFY_DATA" $TMPFILE >> $OUT.new 2>&1 +status=$? +echo Exit status is $status >> $OUT.new + +echo "cmp $TEST_DATA $VERIFY_DATA" >> $OUT.new +cmp $TEST_DATA $VERIFY_DATA >>$OUT.new +status=$? +echo Exit status is $status >> $OUT.new +sed -f $cmd_dir/filter.sed $OUT.new > $OUT + +# +# Do the verification +# + +if [ "$SKIP_UNLINK" != "true" ]; then + rm -f $VERIFY_DATA $TEST_DATA $TMPFILE $OUT.new +else + echo "TMPFILE=$TMPFILE" +fi +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 +fi + +unset VERIFY_FSCK_OPT NATIVE_FSCK_OPT OUT EXP TEST_DATA VERIFY_DATA -- cgit v1.2.3