* [PATCH 1/2] check: remove require_{test,scratch}* after a test fails
@ 2019-04-16 22:34 Darrick J. Wong
2019-04-16 22:36 ` [PATCH 2/2] check: wipe scratch devices between tests Darrick J. Wong
2019-04-17 1:19 ` [PATCH 3/2] check: filter lockdep bugs when scanning dmesg Darrick J. Wong
0 siblings, 2 replies; 3+ messages in thread
From: Darrick J. Wong @ 2019-04-16 22:34 UTC (permalink / raw)
To: Eryu Guan; +Cc: fstests
From: Darrick J. Wong <darrick.wong@oracle.com>
Remove the require_{test,scratch]* sentinel files after a test fails.
This eliminates false fsck corruption reports such as the following:
1. Test A calls _require_scratch, which creates the sentinel file
$RESULT_DIR/require_scratch to facilitate fsck after the test completes.
2. Test A runs some test, which corrupts the scratch filesystem due to
kernel bug or something.
3. Test A calls _fail because of the errors in (2). Note that the test
case returned 1, so ./check unmounts the test and scratch filesystems
without checking them or removing $RESULT_DIR/require_scratch
4. Test B starts up, but does not call _require_scratch. The
$RESULT_DIR/require_scratch file is still there.
5. Test B completes successfully.
6. ./check calls _check_filesystems, which sees the
$RESULT_DIR/require_scratch file and runs fsck.
7. fsck reports the corrupt scratch device (which is associated with
test B) even though B did not ever touch the scratch device and it was
actually test A that corrupted the filesystem.
Note that with the "check: wipe scratch devices between tests" patch
applied, we can also reproduce this problem by running xfs/172 and
xfs/195 with a scratch device small enough that the files created in 172
span multiple AGs and therefore cause 172 to fail.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
check | 2 ++
1 file changed, 2 insertions(+)
diff --git a/check b/check
index 1ddb2e8b..5670e13b 100755
--- a/check
+++ b/check
@@ -788,6 +788,8 @@ for section in $HOST_OPTIONS_SECTIONS; do
_dump_err_cont "[failed, exit status $sts]"
_test_unmount 2> /dev/null
_scratch_unmount 2> /dev/null
+ rm -f ${RESULT_DIR}/require_test*
+ rm -f ${RESULT_DIR}/require_scratch*
err=true
else
# the test apparently passed, so check for corruption
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH 2/2] check: wipe scratch devices between tests
2019-04-16 22:34 [PATCH 1/2] check: remove require_{test,scratch}* after a test fails Darrick J. Wong
@ 2019-04-16 22:36 ` Darrick J. Wong
2019-04-17 1:19 ` [PATCH 3/2] check: filter lockdep bugs when scanning dmesg Darrick J. Wong
1 sibling, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2019-04-16 22:36 UTC (permalink / raw)
To: Eryu Guan; +Cc: fstests
From: Darrick J. Wong <darrick.wong@oracle.com>
Wipe the scratch devices in between each test to ensure that tests are
formatting them and not making assumptions about previous contents.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
check | 6 ++++--
common/rc | 9 +++++++++
common/xfs | 1 +
3 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/check b/check
index 5670e13b..6271d573 100755
--- a/check
+++ b/check
@@ -493,9 +493,8 @@ _check_filesystems()
if [ -f ${RESULT_DIR}/require_scratch ]; then
_check_scratch_fs || err=true
rm -f ${RESULT_DIR}/require_scratch*
- else
- _scratch_unmount 2> /dev/null
fi
+ _scratch_unmount 2> /dev/null
}
_expunge_test()
@@ -635,6 +634,8 @@ for section in $HOST_OPTIONS_SECTIONS; do
echo "check: failed to mount \$SCRATCH_DEV using specified options"
status=1
exit
+ else
+ _scratch_unmount
fi
fi
@@ -753,6 +754,7 @@ for section in $HOST_OPTIONS_SECTIONS; do
# _check_dmesg depends on this log in dmesg
touch ${RESULT_DIR}/check_dmesg
fi
+ _try_wipe_scratch_devs > /dev/null 2>&1
if [ "$DUMP_OUTPUT" = true ]; then
./$seq 2>&1 | tee $tmp.out
# Because $? would get tee's return code
diff --git a/common/rc b/common/rc
index 6cbd6040..e0dd3797 100644
--- a/common/rc
+++ b/common/rc
@@ -3991,6 +3991,15 @@ _require_fibmap()
rm -f $file
}
+_try_wipe_scratch_devs()
+{
+ test -x "$WIPEFS_PROG" || return 0
+
+ for dev in $SCRATCH_DEV_POOL $SCRATCH_DEV $SCRATCH_LOGDEV $SCRATCH_RTDEV; do
+ test -b $dev && $WIPEFS_PROG -a $dev
+ done
+}
+
init_rc
################################################################################
diff --git a/common/xfs b/common/xfs
index 178acefc..4f2ead55 100644
--- a/common/xfs
+++ b/common/xfs
@@ -295,6 +295,7 @@ _require_xfs_db_command()
fi
command=$1
+ _scratch_mkfs_xfs >/dev/null 2>&1
_scratch_xfs_db -x -c "help" | grep $command > /dev/null || \
_notrun "xfs_db $command support is missing"
}
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH 3/2] check: filter lockdep bugs when scanning dmesg
2019-04-16 22:34 [PATCH 1/2] check: remove require_{test,scratch}* after a test fails Darrick J. Wong
2019-04-16 22:36 ` [PATCH 2/2] check: wipe scratch devices between tests Darrick J. Wong
@ 2019-04-17 1:19 ` Darrick J. Wong
1 sibling, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2019-04-17 1:19 UTC (permalink / raw)
To: Eryu Guan; +Cc: fstests
From: Darrick J. Wong <darrick.wong@oracle.com>
Ignore lockdep complaining about its own bugginess when scanning dmesg
output, because we shouldn't be failing filesystem tests on account of
lockdep.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
common/rc | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/common/rc b/common/rc
index e0dd3797..b2287766 100644
--- a/common/rc
+++ b/common/rc
@@ -3511,6 +3511,13 @@ _check_dmesg_for()
_dmesg_since_test_start | egrep -q "$1"
}
+# Default filter for dmesg scanning
+_check_dmesg_filter()
+{
+ egrep -v -e "BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low" \
+ -e "BUG: MAX_STACK_TRACE_ENTRIES too low"
+}
+
# check dmesg log for WARNING/Oops/etc.
_check_dmesg()
{
@@ -3522,7 +3529,7 @@ _check_dmesg()
# default filter is a simple cat command, caller could provide a
# customized filter and pass the name through the first argument, to
# filter out intentional WARNINGs or Oopses
- local filter=${1:-cat}
+ local filter=${1:-_check_dmesg_filter}
_dmesg_since_test_start | $filter >$seqres.dmesg
egrep -q -e "kernel BUG at" \
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-04-17 1:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-16 22:34 [PATCH 1/2] check: remove require_{test,scratch}* after a test fails Darrick J. Wong
2019-04-16 22:36 ` [PATCH 2/2] check: wipe scratch devices between tests Darrick J. Wong
2019-04-17 1:19 ` [PATCH 3/2] check: filter lockdep bugs when scanning dmesg Darrick J. Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox