Commit e82e4ea1 authored by hitstergtd's avatar hitstergtd

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.
parent f8c93d50
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
void client_thread (void *client) void client_thread (void *client)
{ {
char data = 0; 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); int rc = zmq_send (client, &data, 1, 0);
assert (rc == 1); assert (rc == 1);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment