The QUIT commands returns OK on master

This commit is contained in:
Pieter Noordhuis 2010-10-18 12:01:17 +02:00
parent 8b8b7afef2
commit 7496458c68

7
test.c
View File

@ -35,8 +35,11 @@ int main(void) {
__connect(&c);
test("Returns I/O error when the connection is lost: ");
test_cond(redisCommand(c,"QUIT") == NULL &&
strcmp(c->error,"Server closed the connection") == 0);
reply = redisCommand(c,"QUIT");
test_cond(redisCommand(c,"PING") == NULL &&
strcasecmp(reply->reply,"OK") == 0 &&
strcmp(c->error,"read: Server closed the connection") == 0);
freeReplyObject(reply);
redisFree(c);
__connect(&c); /* reconnect */