Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-01 | Merge branch 'gai_strerror' | Pieter Noordhuis | |
See pull request #153. | |||
2013-05-01 | Fix style | Pieter Noordhuis | |
2013-03-14 | Set error when invalid timeout value is given to redisConnectWithTimeout | Aaron Bedra | |
Closes #154 This commit properly sets the error value inside of redisContextWaitReady when an invalid sec or usec value is provided. Tests for each case are provided to demonstrate that the issue is properly fixed and to avoid regression. Signed-off-by: Aaron Bedra <aaron@aaronbedra.com> | |||
2013-02-23 | Fix tests for test_blocking_connection_errors(); | Thordur Bjornsson | |
Add strings to allow OpenBSD/OSX to pass. | |||
2013-01-22 | Made connect functions return NULL on alloc failures. | Henri Doreau | |
Updated documentation and examples accordingly. | |||
2012-08-27 | Test new maximum depth of multi-bulk replies | Pieter Noordhuis | |
2011-12-20 | more error messages | Chip Salzenberg | |
2011-12-02 | increase read depth by one, would allow ruby redis client to read from slowlog | mrb | |
2011-07-10 | Colorize test outcome | Pieter Noordhuis | |
2011-07-10 | Test all supported types for printf-like formatting | Pieter Noordhuis | |
2011-07-09 | Abort on invalid format | Pieter Noordhuis | |
There is no way we can guess the width of the argument when we cannot infer its type from the format specifier. | |||
2011-07-09 | Update printf-formatting tests to fail | Pieter Noordhuis | |
2011-06-19 | Revert "Add function to retrieve formatted reply" | Pieter Noordhuis | |
This reverts commit 77540aa31694aa1e14d41f60a0452e49a2fed86a. The change in buffer strategy is too large to put in a minor release. It is put in a separate branch in the meantime, so it can be refined and released together with a minor version bump. | |||
2011-06-18 | Remove private feature macros for Solaris from compiler flags | Pieter Noordhuis | |
2011-06-18 | Fix compiler warnings | Pieter Noordhuis | |
2011-06-09 | Fix for issue #45 | Pieter Noordhuis | |
2011-06-09 | Flag to disable throughput tests | Pieter Noordhuis | |
2011-05-29 | Exit with a non-zero status when tests failed | Pieter Noordhuis | |
2011-05-22 | More control over host/port and unix path in test.c | Pieter Noordhuis | |
2011-05-22 | Add "make check" target (useful for automated tests). | Piotr Sikora | |
While there, add "-p" option to "hiredis-test", so that we could run tests without interrupting Redis instance running on the default port. | |||
2011-05-05 | Add function to retrieve formatted reply | Pieter Noordhuis | |
This is done by only truncating the read buffer once a full reply has been read. The buffer is no longer truncated halfway through reading a reply. In addition: pass offset/length of protocol and content via the read tasks. | |||
2011-04-21 | Reflect rename in tests | Pieter Noordhuis | |
2011-04-21 | Create protocol reader when creating context | Pieter Noordhuis | |
2011-04-21 | State should not be reset after protocol error | Pieter Noordhuis | |
2011-04-19 | Use variable for throughput test iteration count | Pieter Noordhuis | |
2011-03-31 | Add pipelined throughput tests | Pieter Noordhuis | |
2011-03-06 | Fix formatCommand to work with all empty interpolations | Pieter Noordhuis | |
2011-01-27 | Properly reset state after protocol error in reply reader | Pieter Noordhuis | |
2011-01-27 | Avoid warnings with -Wstrict-prototypes | Pieter Noordhuis | |
2011-01-07 | Return error on socket timeout for a blocking context | Pieter Noordhuis | |
2010-12-02 | Add (nearly) full printf support by delegating to vsprintf | Pieter Noordhuis | |
2010-11-24 | Set error on unexpected nesting of multi bulks | Pieter Noordhuis | |
2010-11-22 | Make error messages consistent in casing | Pieter Noordhuis | |
2010-11-22 | Tests for behavior when connecting fails | Pieter Noordhuis | |
2010-11-22 | Make test for formatting commands using a vector more robust | Pieter Noordhuis | |
2010-11-22 | Fix formatting literal percent characters | Pieter Noordhuis | |
2010-11-22 | Correctly format commands with empty interpolated values | Pieter Noordhuis | |
2010-11-19 | Don't do a write(2) after QUIT | Pieter Noordhuis | |
This causes non-deterministic error messages because sometimes the socket will already be closed and sometimes it is yet to be closed. | |||
2010-11-15 | Don't print when testing can continue | Pieter Noordhuis | |
2010-11-15 | Redis >=2.1 replies with OK on QUIT, so make the test conditional | Pieter Noordhuis | |
2010-11-05 | Include signal.h | Pieter Noordhuis | |
2010-11-04 | Finding \r\n without strstr is a little harder | Pieter Noordhuis | |
2010-11-04 | Return the reply type when the reply object function set is NULL | Pieter Noordhuis | |
2010-11-03 | Check replies in throughput test | Pieter Noordhuis | |
2010-11-03 | Allow to connect using a unix socket from hiredis | Pieter Noordhuis | |
2010-11-02 | Change error reporting to have an explicit type | Pieter Noordhuis | |
When there is an I/O error, errno should be used to find out what is wrong. In other cases, errno cannot be used. So, use an explicit type in Hiredis to define the different error scenarios that can occur. | |||
2010-10-31 | Remove reply object functions from connect functions | Pieter Noordhuis | |
2010-10-31 | First step in decoupling reply callbacks from internals | Pieter Noordhuis | |
2010-10-31 | Format a command using an argument vector | Pieter Noordhuis | |
2010-10-30 | Status replies should have type REDIS_REPLY_STATUS | Pieter Noordhuis | |