From e82e4ea13ece906663b4adacbe7cde6f0f723568 Mon Sep 17 00:00:00 2001 From: hitstergtd Date: Fri, 13 May 2016 04:04:08 +0100 Subject: [PATCH] Problem: test send count too high for AppVeyor Solution: Reduce send count so that the test does not timeout on AppVeyor CI environment and older Windows boxes. --- tests/test_thread_safe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_thread_safe.cpp b/tests/test_thread_safe.cpp index bdfb6dbb..4660ca4b 100644 --- a/tests/test_thread_safe.cpp +++ b/tests/test_thread_safe.cpp @@ -33,7 +33,7 @@ void client_thread (void *client) { char data = 0; - for (int count = 0; count < 100000; count++) { + for (int count = 0; count < 15000; count++) { int rc = zmq_send (client, &data, 1, 0); assert (rc == 1); }