diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-04-02 11:47:40 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-04-04 04:35:19 +0200 |
commit | 7cfd1c58ba244ee0185043c3dac0617bd7a7b938 (patch) | |
tree | c4e04349b34efe72ea7bbf7f9bca46e721ef8f2d /tests/tests.cpp | |
parent | 01fc5978d3e81bd488762937e9302cc6baf69a20 (diff) |
0MQ/2.1 wire format compatibility implemented
- XS_PROTOCOL option added
- libxs ignores when unused flags are set to 1 (0MQ/2.1 bug)
- compatibility tests added
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'tests/tests.cpp')
-rw-r--r-- | tests/tests.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/tests.cpp b/tests/tests.cpp index d4756ab..f5c403a 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -103,6 +103,10 @@ #include "wireformat.cpp" #undef XS_TEST_MAIN +#define XS_TEST_MAIN libzmq21 +#include "libzmq21.cpp" +#undef XS_TEST_MAIN + int main () { int rc; @@ -143,6 +147,8 @@ int main () assert (rc == 0); rc = wireformat (); assert (rc == 0); + rc = libzmq21 (); + assert (rc == 0); fprintf (stderr, "SUCCESS\n"); sleep (1); |