From df8a20a744e406e92856d28fae0ba4a50cfd1579 Mon Sep 17 00:00:00 2001 From: John Sully Date: Thu, 24 Oct 2019 23:30:08 -0400 Subject: [PATCH] Signals can happen on any thread, so look for the signal handler not the command on the callstack Former-commit-id: f1d2b2945007f8811528b197480e255c6b35559c --- tests/integration/logging.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/logging.tcl b/tests/integration/logging.tcl index c1f4854d4..9c8cbe8ba 100644 --- a/tests/integration/logging.tcl +++ b/tests/integration/logging.tcl @@ -6,7 +6,7 @@ if {$system_name eq {linux} || $system_name eq {darwin}} { test "Server is able to generate a stack trace on selected systems" { r config set watchdog-period 200 r debug sleep 1 - set pattern "*debugCommand*" + set pattern "*watchdogSignalHandler*" set retry 10 while {$retry} { set result [exec tail -100 < [srv 0 stdout]]