diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-05-25 14:43:58 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-05-25 14:43:58 +0200 |
commit | 3826d3a1af939903780a3076817a0a6f79056899 (patch) | |
tree | 209c07837a57ec297a7ffd98246a1d7726797dea /tests | |
parent | a34ea4d80609395150742259fd8c9caa4409e961 (diff) |
Temporarily disable backlog test.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/backlog.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/backlog.cpp b/tests/backlog.cpp index 7ae9ed8..078467f 100644 --- a/tests/backlog.cpp +++ b/tests/backlog.cpp @@ -43,6 +43,7 @@ extern "C" } #endif +#if 0 static void tcp_worker (void *ctx_) { int rc; @@ -52,11 +53,14 @@ extern "C" assert (push); rc = xs_connect (push, "tcp://127.0.0.1:5560"); assert (rc >= 0); + rc = xs_send (push, NULL, 0, 0); assert (rc == 0); rc = xs_close (push); assert (rc == 0); } +#endif + } int XS_TEST_MAIN () @@ -101,6 +105,7 @@ int XS_TEST_MAIN () thread_join (threads [i]); #endif +#if 0 // Test the exhaustion on TCP backlog. ctx = xs_init (); @@ -129,6 +134,7 @@ int XS_TEST_MAIN () for (i = 0; i < PARALLEL_CONNECTS; i++) thread_join (threads [i]); +#endif return 0; } |