From: Darrick J. Wong Date: Fri, 27 Oct 2017 20:24:07 +0000 (-0700) Subject: xfs/333: fix errors with new inode pointer verifiers X-Git-Tag: v2022.05.01~1807 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=0862b1d8b6a7c3f0087a021c0958b4bd6799879f;p=xfstests-dev.git xfs/333: fix errors with new inode pointer verifiers Fix test failures with new inode pointer verifiers... and also make sure that the running xfs actually supports realtime rmap. (This should stop the current crop of weird test failures since nobody has rtrmap yet anyway...) Signed-off-by: Darrick J. Wong Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- diff --git a/tests/xfs/333 b/tests/xfs/333 index f7f233d1..bf0c811d 100755 --- a/tests/xfs/333 +++ b/tests/xfs/333 @@ -51,6 +51,8 @@ unset SCRATCH_RTDEV echo "Format and mount" _scratch_mkfs > "$seqres.full" 2>&1 +rrmapino="$(_scratch_xfs_db -c 'sb 0' -c 'p rrmapino' 2>&1)" +test "${rrmapino}" = "field rrmapino not found" && _notrun "realtime rmapbt not supported" _scratch_mount echo "Create some files" @@ -62,21 +64,9 @@ _scratch_unmount echo "Corrupt fs" _scratch_xfs_db -x -c 'sb 0' -c "write rrmapino $ino" >> $seqres.full -_scratch_mount - -echo "Check files" -md5sum $SCRATCH_MNT/f1 2>&1 | _filter_scratch - -echo "Try to create more files" -$XFS_IO_PROG -f -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f3 >> $seqres.full 2>&1 +_scratch_mount 2>&1 | _filter_scratch -echo "Repair fs" -_scratch_unmount 2>&1 | _filter_scratch -_repair_scratch_fs >> $seqres.full 2>&1 - -echo "Try to create more files (again)" -_scratch_mount -$XFS_IO_PROG -f -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f4 >> $seqres.full +echo "Test done, mount should have failed" # success, all done status=0 diff --git a/tests/xfs/333.out b/tests/xfs/333.out index bee9bbcc..f7518f46 100644 --- a/tests/xfs/333.out +++ b/tests/xfs/333.out @@ -2,8 +2,5 @@ QA output created by 333 Format and mount Create some files Corrupt fs -Check files -8f27047948255cb84872e2dd7c0bc56d SCRATCH_MNT/f1 -Try to create more files -Repair fs -Try to create more files (again) +mount: mount SCRATCH_DEV on SCRATCH_MNT failed: Structure needs cleaning +Test done, mount should have failed