From e8c7a2067ec7fc6315ee9bc34a010ec5f0369c5c Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Fri, 4 Dec 2020 19:33:22 -0500 Subject: [PATCH] testsuite pr14536.stp: toughen This test case stresses nesting of heavy duty processing (backtrace printing) within kernel interrupt processing paths. It seems to sometimes trigger problems - so let's make the test harder to make latent problems show up more likely. Instead of quitting after the first irq_* function hit, stick around for 10 seconds. --- testsuite/systemtap.base/pr14546.stp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testsuite/systemtap.base/pr14546.stp b/testsuite/systemtap.base/pr14546.stp index 3e59a6f3a..e4c205a8f 100644 --- a/testsuite/systemtap.base/pr14546.stp +++ b/testsuite/systemtap.base/pr14546.stp @@ -2,5 +2,6 @@ probe kernel.function("irq_*").call { x = 10; y = 10; z = 10; w = 10 $1 assert(!(x != 10 || y != 10 || z != 10 || w != 10), "memory got corrupted by " . @1) - exit() } + +probe timer.s(10) { exit () } -- 2.43.5