aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZorro Lang <zlang@redhat.com>2022-04-21 00:07:56 +0800
committerZorro Lang <zlang@kernel.org>2022-04-27 02:43:25 +0800
commit380ee98d92e6b2a8c00458e98531da68b4495c05 (patch)
tree276152d2a4b7d3f3e921cefdab7aa7395d7103b6
parent95c10ab90c2865d0283421e542feec14d46fc597 (diff)
downloadxfstests-dev-380ee98d92e6b2a8c00458e98531da68b4495c05.tar.gz
fstests: remove _wipe_fs from dump testing entirely
The _wipe_fs function in common/dump is a historical remnant of xfstests, it's easy to cause confusion now. Now xfstests tend to call `require_scratch && scratch_mkfs && scratch_mount` in each case itself, we don't need to use a function to do that specially, so remove _wipe_fs entirely. Signed-off-by: Zorro Lang <zlang@redhat.com> Reviewed-by: Darrick J. Wong <djwong@kernel.org>
-rw-r--r--common/dump17
-rwxr-xr-xtests/xfs/0223
-rwxr-xr-xtests/xfs/0233
-rwxr-xr-xtests/xfs/0243
-rwxr-xr-xtests/xfs/0253
-rwxr-xr-xtests/xfs/0263
-rwxr-xr-xtests/xfs/0273
-rwxr-xr-xtests/xfs/0287
-rwxr-xr-xtests/xfs/0357
-rwxr-xr-xtests/xfs/0363
-rwxr-xr-xtests/xfs/0373
-rwxr-xr-xtests/xfs/0383
-rwxr-xr-xtests/xfs/0393
-rwxr-xr-xtests/xfs/0435
-rwxr-xr-xtests/xfs/0463
-rwxr-xr-xtests/xfs/0477
-rwxr-xr-xtests/xfs/0554
-rwxr-xr-xtests/xfs/0563
-rwxr-xr-xtests/xfs/0593
-rwxr-xr-xtests/xfs/0603
-rwxr-xr-xtests/xfs/0613
-rwxr-xr-xtests/xfs/0633
-rwxr-xr-xtests/xfs/0643
-rwxr-xr-xtests/xfs/0653
-rwxr-xr-xtests/xfs/0663
-rwxr-xr-xtests/xfs/0683
-rwxr-xr-xtests/xfs/2663
-rwxr-xr-xtests/xfs/2674
-rwxr-xr-xtests/xfs/2684
-rwxr-xr-xtests/xfs/2814
-rwxr-xr-xtests/xfs/2824
-rwxr-xr-xtests/xfs/2834
-rwxr-xr-xtests/xfs/2964
-rwxr-xr-xtests/xfs/3012
-rwxr-xr-xtests/xfs/3023
35 files changed, 104 insertions, 35 deletions
diff --git a/common/dump b/common/dump
index ea16d442cb..6de7dab489 100644
--- a/common/dump
+++ b/common/dump
@@ -217,14 +217,6 @@ _require_tape()
_set_variable
}
-_wipe_fs()
-{
- _require_scratch
-
- _scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
- _scratch_mount >>$seqres.full
-}
-
#
# Cleanup created dirs and files
# Called by trap
@@ -289,7 +281,6 @@ _create_dumpdir_stress_num()
echo "Creating directory system to dump using fsstress."
_count=$1
- _wipe_fs
_param="-f link=10 -f creat=10 -f mkdir=10 -f truncate=5 -f symlink=10"
rm -rf $dump_dir
@@ -567,7 +558,6 @@ End-of-File
_create_dumpdir_largefile()
{
- _wipe_fs
mkdir -p $dump_dir || _fail "cannot mkdir \"$dump_dir\""
_largesize=4294967297
_largefile=$dump_dir/largefile
@@ -579,7 +569,6 @@ _create_dumpdir_largefile()
_create_dumpdir_fill()
{
- _wipe_fs
_mk_fillconfig1
_do_create_dumpdir_fill
_stable_fs
@@ -587,7 +576,6 @@ _create_dumpdir_fill()
_create_dumpdir_fill2()
{
- _wipe_fs
_mk_fillconfig2
_do_create_dumpdir_fill
_stable_fs
@@ -595,7 +583,6 @@ _create_dumpdir_fill2()
_create_dumpdir_fill_perm()
{
- _wipe_fs
_mk_fillconfig_perm
_do_create_dumpdir_fill
_stable_fs
@@ -603,7 +590,6 @@ _create_dumpdir_fill_perm()
_create_dumpdir_fill_ea()
{
- _wipe_fs
_mk_fillconfig_ea
_do_create_dumpdir_fill
_stable_fs
@@ -615,7 +601,6 @@ _create_dumpdir_fill_ea()
#
_create_dumpdir_fill_multi()
{
- _wipe_fs
_mk_fillconfig_multi
_do_create_dumpdir_fill
_stable_fs
@@ -720,7 +705,6 @@ End-of-File
_create_dumpdir_symlinks()
{
- _wipe_fs
_mk_symlink_config
_do_create_dump_symlinks
_stable_fs
@@ -771,7 +755,6 @@ _modify_level()
_create_dumpdir_hardlinks()
{
_numsets=$1
- _wipe_fs
echo "Creating directory system of hardlinks to incrementally dump."
mkdir -p $dump_dir || _fail "cannot mkdir \"$dump_dir\""
diff --git a/tests/xfs/022 b/tests/xfs/022
index 9334bc4116..2f011b284a 100755
--- a/tests/xfs/022
+++ b/tests/xfs/022
@@ -29,6 +29,9 @@ _cleanup()
_supported_fs xfs
_require_tape $TAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
# note: fsstress uses an endian dependent random number generator, running this
# will produce different output for big/little endian machines.
diff --git a/tests/xfs/023 b/tests/xfs/023
index 1ff406a689..f6f6503a2d 100755
--- a/tests/xfs/023
+++ b/tests/xfs/023
@@ -28,6 +28,9 @@ _cleanup()
_supported_fs xfs
_require_tape $TAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_erase_hard
_do_dump_sub
diff --git a/tests/xfs/024 b/tests/xfs/024
index a277c83f89..83a8882c42 100755
--- a/tests/xfs/024
+++ b/tests/xfs/024
@@ -26,6 +26,9 @@ _cleanup()
_supported_fs xfs
_require_tape $TAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
# ensure file/dir timestamps precede dump timestamp
sleep 2
diff --git a/tests/xfs/025 b/tests/xfs/025
index b7a5b3bb3e..bafe82d74d 100755
--- a/tests/xfs/025
+++ b/tests/xfs/025
@@ -26,6 +26,9 @@ _cleanup()
_supported_fs xfs
_require_tape $TAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_erase_hard
_do_dump_min
diff --git a/tests/xfs/026 b/tests/xfs/026
index 29ebb5aab6..fba385dc90 100755
--- a/tests/xfs/026
+++ b/tests/xfs/026
@@ -24,6 +24,9 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_do_dump_file
diff --git a/tests/xfs/027 b/tests/xfs/027
index a0dcf8b34a..16cd203dae 100755
--- a/tests/xfs/027
+++ b/tests/xfs/027
@@ -24,6 +24,9 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_do_dump_restore
diff --git a/tests/xfs/028 b/tests/xfs/028
index b7c9d16bb6..1ff9d7d225 100755
--- a/tests/xfs/028
+++ b/tests/xfs/028
@@ -24,10 +24,9 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
-
-# wipe test dir clean first
-# so dump can be real quick
-_wipe_fs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
#
# Create 5 dumps
diff --git a/tests/xfs/035 b/tests/xfs/035
index 03cb7a762e..f100bb1862 100755
--- a/tests/xfs/035
+++ b/tests/xfs/035
@@ -25,10 +25,17 @@ _cleanup()
_supported_fs xfs
_require_tape $TAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_erase_hard
_do_dump -L $seq.1
_rewind
+_scratch_unmount
+
+_scratch_mkfs_xfs >>$seqres.full
+_scratch_mount
_create_dumpdir_fill2
_do_dump -L $seq.2
_do_restore -L $seq.2
diff --git a/tests/xfs/036 b/tests/xfs/036
index 191345c5a5..73eb7cd5d8 100755
--- a/tests/xfs/036
+++ b/tests/xfs/036
@@ -25,6 +25,9 @@ _cleanup()
_supported_fs xfs
_require_tape $RMT_IRIXTAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_erase_soft
_do_dump_min -o -F
diff --git a/tests/xfs/037 b/tests/xfs/037
index b3fbbedd1b..b19ba9e9e0 100755
--- a/tests/xfs/037
+++ b/tests/xfs/037
@@ -24,6 +24,9 @@ _cleanup()
_supported_fs xfs
_require_tape $RMT_TAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_erase_soft
_do_dump_min -o -F
diff --git a/tests/xfs/038 b/tests/xfs/038
index 633c51e0bb..397c354df8 100755
--- a/tests/xfs/038
+++ b/tests/xfs/038
@@ -24,6 +24,9 @@ _cleanup()
_supported_fs xfs
_require_tape $RMT_TAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_erase_hard
_do_dump
diff --git a/tests/xfs/039 b/tests/xfs/039
index e3a9892139..d54e9975b6 100755
--- a/tests/xfs/039
+++ b/tests/xfs/039
@@ -25,6 +25,9 @@ _cleanup()
_supported_fs xfs
_require_tape $RMT_IRIXTAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_erase_soft
_do_dump -o -F
diff --git a/tests/xfs/043 b/tests/xfs/043
index 5b198ddea2..415ed16edd 100755
--- a/tests/xfs/043
+++ b/tests/xfs/043
@@ -26,7 +26,10 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
-_require_tape $TAPE_DEV
+_require_tape $TAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
_erase_hard
_do_dump_sub
diff --git a/tests/xfs/046 b/tests/xfs/046
index 94d1c05114..48daff871c 100755
--- a/tests/xfs/046
+++ b/tests/xfs/046
@@ -22,6 +22,9 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_symlinks
_do_dump_file
diff --git a/tests/xfs/047 b/tests/xfs/047
index f83a2c9470..6d0dc5f752 100755
--- a/tests/xfs/047
+++ b/tests/xfs/047
@@ -22,10 +22,9 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
-
-# wipe test dir clean first
-# so dump can be real quick
-_wipe_fs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
#
# Create 5 dumps
diff --git a/tests/xfs/055 b/tests/xfs/055
index 1e3ba6acb5..c6ecae3d45 100755
--- a/tests/xfs/055
+++ b/tests/xfs/055
@@ -25,6 +25,10 @@ _cleanup()
_supported_fs xfs
_require_tape $RMT_TAPE_USER@$RMT_IRIXTAPE_DEV
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
+
_create_dumpdir_fill
_erase_soft
_do_dump -o -F
diff --git a/tests/xfs/056 b/tests/xfs/056
index 4ee473f64b..f742f419d8 100755
--- a/tests/xfs/056
+++ b/tests/xfs/056
@@ -25,6 +25,9 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill_perm
_do_dump_file
diff --git a/tests/xfs/059 b/tests/xfs/059
index 4bbfb5f5c8..515ef2a412 100755
--- a/tests/xfs/059
+++ b/tests/xfs/059
@@ -26,6 +26,9 @@ _cleanup()
_supported_fs xfs
_require_multi_stream
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill_multi
_do_dump_multi_file --multi 4
diff --git a/tests/xfs/060 b/tests/xfs/060
index 4b15c6c2ef..0c0dc981f7 100755
--- a/tests/xfs/060
+++ b/tests/xfs/060
@@ -26,6 +26,9 @@ _cleanup()
_supported_fs xfs
_require_multi_stream
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill_multi
_do_dump_multi_file --multi 4
diff --git a/tests/xfs/061 b/tests/xfs/061
index c5d4a2d110..0b20cc30e3 100755
--- a/tests/xfs/061
+++ b/tests/xfs/061
@@ -24,6 +24,9 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
# src/dumpfile based on dumping from
# _create_dumpdir_fill_perm (small dump)
diff --git a/tests/xfs/063 b/tests/xfs/063
index 2d1d2cbc42..660b300f7c 100755
--- a/tests/xfs/063
+++ b/tests/xfs/063
@@ -26,6 +26,9 @@ _cleanup()
_supported_fs xfs
_require_attrs trusted user
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
# create files with EAs
_create_dumpdir_fill_ea
diff --git a/tests/xfs/064 b/tests/xfs/064
index e4e713cd67..a81b226b0b 100755
--- a/tests/xfs/064
+++ b/tests/xfs/064
@@ -36,6 +36,9 @@ _ls_size_filter()
# real QA test starts here
_supported_fs xfs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_hardlinks 9
diff --git a/tests/xfs/065 b/tests/xfs/065
index 0df7477f72..8485dee6a1 100755
--- a/tests/xfs/065
+++ b/tests/xfs/065
@@ -70,7 +70,8 @@ _scratch_unmount
# files and directories
#
-_wipe_fs
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
mkdir -p $dump_dir || _fail "cannot mkdir \"$dump_dir\""
cd $dump_dir
diff --git a/tests/xfs/066 b/tests/xfs/066
index 5f0a74e349..2c369ad77f 100755
--- a/tests/xfs/066
+++ b/tests/xfs/066
@@ -24,6 +24,7 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
_require_test
+_require_scratch
_my_stat_filter()
{
@@ -37,6 +38,8 @@ else
_notrun "Installed libc doesn't correctly handle setrlimit/ftruncate64"
fi
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_largefile
echo "ls dumpdir/largefile"
stat $dump_dir/largefile | _my_stat_filter
diff --git a/tests/xfs/068 b/tests/xfs/068
index 103466c3e6..f80b53e5bd 100755
--- a/tests/xfs/068
+++ b/tests/xfs/068
@@ -28,6 +28,9 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_stress_num 4096
diff --git a/tests/xfs/266 b/tests/xfs/266
index 549fff3be3..eeca8822fc 100755
--- a/tests/xfs/266
+++ b/tests/xfs/266
@@ -50,12 +50,15 @@ filter_cumulative_quota_updates() {
# real QA test starts here
_supported_fs xfs
+_require_scratch
$XFSDUMP_PROG -h 2>&1 | grep -q -e -D
if [ $? -ne 0 ]; then
_notrun "requires xfsdump -D"
fi
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
# ensure file/dir timestamps precede dump timestamp
sleep 2
diff --git a/tests/xfs/267 b/tests/xfs/267
index 62d39aba54..89b968be15 100755
--- a/tests/xfs/267
+++ b/tests/xfs/267
@@ -34,7 +34,6 @@ _create_files()
biggg 41943040 $nobody $nobody 777 attr1 some_text1 root
End-of-File
- _wipe_fs
_do_create_dumpdir_fill
_stable_fs
}
@@ -48,6 +47,9 @@ _supported_fs xfs
_require_tape $TAPE_DEV
_require_attrs trusted
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_files
_erase_hard
diff --git a/tests/xfs/268 b/tests/xfs/268
index b1dd312d95..8c991fba59 100755
--- a/tests/xfs/268
+++ b/tests/xfs/268
@@ -37,7 +37,6 @@ bigg1 12582912 $nobody $nobody 777 attr1 some_text1 root
bigg2 12582912 $nobody $nobody 777 attr2 some_text2 user
End-of-File
- _wipe_fs
_do_create_dumpdir_fill
_stable_fs
}
@@ -51,6 +50,9 @@ _supported_fs xfs
_require_tape $TAPE_DEV
_require_attrs trusted user
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_files
_erase_hard
diff --git a/tests/xfs/281 b/tests/xfs/281
index ea1147612e..6b148a9466 100755
--- a/tests/xfs/281
+++ b/tests/xfs/281
@@ -22,8 +22,10 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
-
_require_legacy_v2_format
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
diff --git a/tests/xfs/282 b/tests/xfs/282
index 07a4623afb..50303b084b 100755
--- a/tests/xfs/282
+++ b/tests/xfs/282
@@ -24,8 +24,10 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
-
_require_legacy_v2_format
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
# ensure file/dir timestamps precede dump timestamp
diff --git a/tests/xfs/283 b/tests/xfs/283
index 47fd4c3aad..59ea5f3bce 100755
--- a/tests/xfs/283
+++ b/tests/xfs/283
@@ -24,8 +24,10 @@ _cleanup()
# real QA test starts here
_supported_fs xfs
-
_require_legacy_v2_format
+_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
_create_dumpdir_fill
# ensure file/dir timestamps precede dump timestamp
diff --git a/tests/xfs/296 b/tests/xfs/296
index 4eaf049be1..efd303e213 100755
--- a/tests/xfs/296
+++ b/tests/xfs/296
@@ -28,8 +28,8 @@ _supported_fs xfs
_require_scratch
_require_command "$SETCAP_PROG" setcap
_require_command "$GETCAP_PROG" getcap
-
-_wipe_fs
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
mkdir -p $dump_dir
echo test > $dump_dir/testfile
diff --git a/tests/xfs/301 b/tests/xfs/301
index d44533d681..71ec142034 100755
--- a/tests/xfs/301
+++ b/tests/xfs/301
@@ -27,6 +27,8 @@ _cleanup()
# Modify as appropriate.
_supported_fs xfs
_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
# Extended attributes
attr_name=attrname
diff --git a/tests/xfs/302 b/tests/xfs/302
index 6587a6e60e..2e16890c75 100755
--- a/tests/xfs/302
+++ b/tests/xfs/302
@@ -26,9 +26,10 @@ _cleanup()
# Modify as appropriate.
_supported_fs xfs
_require_scratch
+_scratch_mkfs_xfs >>$seqres.full || _fail "mkfs failed"
+_scratch_mount
echo "Silence is golden."
-_wipe_fs
mkdir $dump_dir >> $seqres.full 2>&1 || _fail "mkdir \"$dump_dir\" failed"
for i in `seq 1 4`; do
$XFS_IO_PROG -f -c "truncate 1t" $dump_dir/sparsefile$i \