Enabled object encoding for multiple keys in MSET. Added a test for memory leaks in test-redis.tcl when running on Mac OS X

This commit is contained in:
antirez
2009-11-28 16:55:05 +01:00
parent 791445b745
commit 1751139117
3 changed files with 10 additions and 2 deletions

View File

@ -1092,6 +1092,14 @@ proc main {server port} {
$r save
} {OK}
catch {
if {[string match {*Darwin*} [exec uname -a]]} {
test {Check for memory leaks} {
exec leaks redis-server
} {*0 leaks*}
}
}
puts "\n[expr $::passed+$::failed] tests, $::passed passed, $::failed failed"
if {$::failed > 0} {
puts "\n*** WARNING!!! $::failed FAILED TESTS ***\n"