tag memory leak check on kill server as "leaks"

This commit is contained in:
Pieter Noordhuis 2010-06-03 00:27:09 +02:00
parent afbf59145a
commit 5a9fcb87ca

View File

@ -33,9 +33,11 @@ proc kill_server config {
if {![dict exists $config "skipleaks"]} {
catch {
if {[string match {*Darwin*} [exec uname -a]]} {
test "Check for memory leaks (pid $pid)" {
exec leaks $pid
} {*0 leaks*}
tags {"leaks"} {
test "Check for memory leaks (pid $pid)" {
exec leaks $pid
} {*0 leaks*}
}
}
}
}