Commit 17511391 authored by antirez's avatar antirez
Browse files

Enabled object encoding for multiple keys in MSET. Added a test for memory...

Enabled object encoding for multiple keys in MSET. Added a test for memory leaks in test-redis.tcl when running on Mac OS X
parent 791445b7
......@@ -84,7 +84,6 @@ static int aeApiPoll(aeEventLoop *eventLoop, struct timeval *tvp) {
eventLoop->fired[j].fd = e->ident;
eventLoop->fired[j].mask = mask;
}
}
return numevents;
}
\ No newline at end of file
}
......@@ -3059,6 +3059,7 @@ static void msetGenericCommand(redisClient *c, int nx) {
for (j = 1; j < c->argc; j += 2) {
int retval;
tryObjectEncoding(c->argv[j+1]);
retval = dictAdd(c->db->dict,c->argv[j],c->argv[j+1]);
if (retval == DICT_ERR) {
dictReplace(c->db->dict,c->argv[j],c->argv[j+1]);
......
......@@ -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"
......
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