- 18 Nov, 2018 1 commit
-
-
Luca Boccassi authored
Solution: do it
-
- 23 Aug, 2018 1 commit
-
-
Simon Giesecke authored
Solution: migrate to unity
-
- 27 May, 2018 1 commit
-
-
Simon Giesecke authored
Solution: apply naming style
-
- 10 Feb, 2018 1 commit
-
-
Luca Boccassi authored
Solution: change variable type in test_timers to match public API
-
- 09 Feb, 2018 1 commit
-
-
sigiesec authored
Solution: relaxed test assertions, based on the actual time passed, instead of assuming that this equals to the time slept
-
- 02 Feb, 2018 1 commit
-
-
sigiesec authored
Solution: applied clang-format
-
- 17 Oct, 2017 1 commit
-
-
Luca Boccassi authored
Solution: define __STDC_LIMIT_MACROS in test_timers.cpp before including testutil.hpp so that the definitions are included
-
- 23 Aug, 2017 4 commits
-
-
sigiesec authored
Solution: add test
-
sigiesec authored
Problem: missing tests for zmq_timers_* corner cases, missing handling of such corner cases, code duplication, missing assertions in test code Solution: add tests, add checks to timers_t, add match_by_id functor, add assertions
-
sigiesec authored
Solution: added tests
-
sigiesec authored
Solution: replace sleep_ my msleep
-
- 05 May, 2016 1 commit
-
-
Doron Somech authored
-
- 12 Feb, 2016 1 commit
-
-
Pieter Hintjens authored
There were numerous small issues with test cases: - some lacked the right source file header - some were not portable at all - some were using internal libzmq APIs (headers) Solution: fixed and cleaned up.
-
- 06 Feb, 2016 2 commits
-
-
Pieter Hintjens authored
Solution: be more explicit in the code, and in the zmq_recv man page (which is the most unobvious case). Assert if length is not zero and buffer is nonetheless null.
-
Michael authored
windows.hpp must be included first due to increases _WIN32_WINNT version
-
- 01 Feb, 2016 1 commit
-
-
Constantin Rack authored
Solution: remove all remaining references to `zmq_utils.h`
-
- 30 Jan, 2016 1 commit
-
-
Jean-Christophe Fillion-Robin authored
This commit addresses the following warnings reported on gcc 5.2.1. In the future, this will help reduce the "noise" and help catch warnings revealing a serious problem. 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<--- /path/to/libzmq/src/options.cpp:1048:36: warning: unused parameter ‘option_’ [-Wunused-parameter] bool zmq::options_t::is_valid (int option_) const ^ /path/to/libzmq/src/plain_client.cpp:146:30: warning: unused parameter ‘cmd_data’ [-Wunused-parameter] const unsigned char *cmd_data, size_t data_size) ^ /path/to/libzmq/src/plain_client.cpp:146:30: warning: unused parameter ‘cmd_data’ [-Wunused-parameter] const unsigned char *cmd_data, size_t data_size) ^ /path/to/libzmq/src/socket_base.cpp:1445:44: warning: unused parameter ‘group_’ [-Wunused-parameter] int zmq::socket_base_t::xjoin (const char *group_) ^ /path/to/libzmq/src/socket_base.cpp:1451:45: warning: unused parameter ‘group_’ [-Wunused-parameter] int zmq::socket_base_t::xleave (const char *group_) ^ /path/to/libzmq/src/radio.cpp:145:33: warning: unused parameter ‘msg_’ [-Wunused-parameter] int zmq::radio_t::xrecv (msg_t *msg_) ^ /path/to/libzmq/src/dish.cpp:164:32: warning: unused parameter ‘msg_’ [-Wunused-parameter] int zmq::dish_t::xsend (msg_t *msg_) ^ /path/to/libzmq/tests/test_msg_ffn.cpp:32:16: warning: unused parameter ‘data’ [-Wunused-parameter] void ffn(void *data, void *hint) { ^ /path/to/libzmq/tests/test_timers.cpp:50:19: warning: unused parameter ‘timer_id’ [-Wunused-parameter] void handler (int timer_id, void* arg) ^ 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
-
- 28 Jan, 2016 1 commit
-
-
Constantin Rack authored
Solution: update to 2016
-
- 14 Jan, 2016 1 commit
-
-
Anonymous Maarten authored
found. Solution: Include the source directory Problem: _sleep is a library function of Windows. Solution: use sleep_
-
- 21 Dec, 2015 1 commit
-
-
Pieter Hintjens authored
If we're going to add CLASS-like APIs we should use the proper syntax; specifically 'destroy' instead of 'close', which is a hangover from the 'ZeroMQ is like sockets' model we're slowly moving away from. Solution: change zmq_timers_close(p) to zmq_timers_destroy(&p)
-
- 18 Dec, 2015 1 commit
-
-
somdoron authored
-