0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 23:01:04 +08:00

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.
This commit is contained in:
hitstergtd 2016-05-13 04:04:08 +01:00
parent f8c93d508f
commit e82e4ea13e

View File

@ -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);
}