summaryrefslogtreecommitdiff
path: root/tests/instances.tcl
diff options
context:
space:
mode:
authorMadelyn Olson <34459052+madolson@users.noreply.github.com>2021-02-24 14:26:16 -0800
committerGitHub <noreply@github.com>2021-02-24 14:26:16 -0800
commitc6f0ea2c81ffd5452dc6373d79786fdec8874b20 (patch)
treee6e41a6421596c5c5af43f73074d71f03c7c6538 /tests/instances.tcl
parent60d5ef4d828bc8732ac1d4c274471655a13d667d (diff)
downloadredis-c6f0ea2c81ffd5452dc6373d79786fdec8874b20.tar.gz
Allow stopped redis processes to be killed in tests (#8552)
Diffstat (limited to 'tests/instances.tcl')
-rw-r--r--tests/instances.tcl2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/instances.tcl b/tests/instances.tcl
index 793bce80d..255d9740f 100644
--- a/tests/instances.tcl
+++ b/tests/instances.tcl
@@ -186,6 +186,8 @@ proc is_alive pid {
proc stop_instance pid {
catch {exec kill $pid}
+ # Node might have been stopped in the test
+ catch {exec kill -SIGCONT $pid}
if {$::valgrind} {
set max_wait 60000
} else {