Commit 99fc582f authored by antirez's avatar antirez
Browse files

Test: do not complain when "leaks" can't run because process died.

parent 3580bb48
...@@ -40,6 +40,10 @@ proc kill_server config { ...@@ -40,6 +40,10 @@ proc kill_server config {
test "Check for memory leaks (pid $pid)" { test "Check for memory leaks (pid $pid)" {
set output {0 leaks} set output {0 leaks}
catch {exec leaks $pid} output catch {exec leaks $pid} output
if {[string match {*process does not exist*} $output]} {
# In a few tests we kill the server process.
set output "0 leaks"
}
set output set output
} {*0 leaks*} } {*0 leaks*}
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment