mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-17 08:34:00 +00: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:
parent
f8c93d508f
commit
e82e4ea13e
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user