From: Darrick J. Wong <djwong@xxxxxxxxxx> Create tests to race fsstress with directories and directory parent pointer repair while running fsstress in the background. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- tests/xfs/815 | 37 +++++++++++++++++++++++++++++++++++++ tests/xfs/815.out | 2 ++ tests/xfs/816 | 38 ++++++++++++++++++++++++++++++++++++++ tests/xfs/816.out | 2 ++ 4 files changed, 79 insertions(+) create mode 100755 tests/xfs/815 create mode 100644 tests/xfs/815.out create mode 100755 tests/xfs/816 create mode 100644 tests/xfs/816.out diff --git a/tests/xfs/815 b/tests/xfs/815 new file mode 100755 index 0000000000..745afec792 --- /dev/null +++ b/tests/xfs/815 @@ -0,0 +1,37 @@ +#! /bin/bash +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2022 Oracle. Inc. All Rights Reserved. +# +# FS QA Test No. 815 +# +# Race fsstress and directory repair for a while to see if we crash or livelock. +# +. ./common/preamble +_begin_fstest online_repair dangerous_fsstress_repair + +_cleanup() { + _scratch_xfs_stress_scrub_cleanup &> /dev/null + cd / + rm -r -f $tmp.* +} +_register_cleanup "_cleanup" BUS + +# Import common functions. +. ./common/filter +. ./common/fuzzy +. ./common/inject +. ./common/xfs + +# real QA test starts here +_supported_fs xfs +_require_scratch +_require_xfs_stress_online_repair + +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount +_scratch_xfs_stress_online_repair -x 'dir' -s "repair directory" -t "%dir%" + +# success, all done +echo Silence is golden +status=0 +exit diff --git a/tests/xfs/815.out b/tests/xfs/815.out new file mode 100644 index 0000000000..6ea462f3f7 --- /dev/null +++ b/tests/xfs/815.out @@ -0,0 +1,2 @@ +QA output created by 815 +Silence is golden diff --git a/tests/xfs/816 b/tests/xfs/816 new file mode 100755 index 0000000000..25a79005f8 --- /dev/null +++ b/tests/xfs/816 @@ -0,0 +1,38 @@ +#! /bin/bash +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2022 Oracle. Inc. All Rights Reserved. +# +# FS QA Test No. 816 +# +# Race fsstress and parent pointers repair for a while to see if we crash or +# livelock. +# +. ./common/preamble +_begin_fstest online_repair dangerous_fsstress_repair + +_cleanup() { + _scratch_xfs_stress_scrub_cleanup &> /dev/null + cd / + rm -r -f $tmp.* +} +_register_cleanup "_cleanup" BUS + +# Import common functions. +. ./common/filter +. ./common/fuzzy +. ./common/inject +. ./common/xfs + +# real QA test starts here +_supported_fs xfs +_require_scratch +_require_xfs_stress_online_repair + +_scratch_mkfs > "$seqres.full" 2>&1 +_scratch_mount +_scratch_xfs_stress_online_repair -s "repair parent" -t "%dir%" + +# success, all done +echo Silence is golden +status=0 +exit diff --git a/tests/xfs/816.out b/tests/xfs/816.out new file mode 100644 index 0000000000..a9d8f943c8 --- /dev/null +++ b/tests/xfs/816.out @@ -0,0 +1,2 @@ +QA output created by 816 +Silence is golden