diff options
| author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-04-21 10:54:54 +0200 | 
|---|---|---|
| committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-04-21 10:54:54 +0200 | 
| commit | fc790ebea63d122066180b255e6a3b980b37f73e (patch) | |
| tree | 9234afaa7292fa2c531e8b93479ca85307a22004 | |
| parent | 26588f50074baf2b953468cd37405444bd4db179 (diff) | |
| download | hiredict-fc790ebea63d122066180b255e6a3b980b37f73e.tar.xz | |
State should not be reset after protocol error
| -rw-r--r-- | test.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -325,14 +325,14 @@ static void test_reply_reader(void) {      test_cond(ret == REDIS_OK && reply == (void*)REDIS_REPLY_STATUS);      redisReplyReaderFree(reader); -    test("Properly reset state after protocol error: "); +    test("Don't reset state after protocol error: ");      reader = redisReplyReaderCreate();      redisReplyReaderSetReplyObjectFunctions(reader,NULL);      redisReplyReaderFeed(reader,(char*)"x",1);      ret = redisReplyReaderGetReply(reader,&reply);      assert(ret == REDIS_ERR);      ret = redisReplyReaderGetReply(reader,&reply); -    test_cond(ret == REDIS_OK && reply == NULL) +    test_cond(ret == REDIS_ERR && reply == NULL);  }  static void test_throughput(void) { | 
