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:
parent
f8c93d508f
commit
e82e4ea13e
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user