diff options
author | Saúl Ibarra Corretgé <saghul@gmail.com> | 2014-09-04 18:45:39 +0200 |
---|---|---|
committer | Saúl Ibarra Corretgé <saghul@gmail.com> | 2014-09-04 18:45:39 +0200 |
commit | 1afdd9a1e5cb7f6a53c4b19017c1df10ba485751 (patch) | |
tree | 1892b15cf87e53cf7e91f7314d9f6cf501f43674 /test/test-tcp-write-queue-order.c | |
parent | 38cc2e39d056d6bb9e22c329f436cfa75590bb5d (diff) | |
download | libuv-1afdd9a1e5cb7f6a53c4b19017c1df10ba485751.tar.gz libuv-1afdd9a1e5cb7f6a53c4b19017c1df10ba485751.zip |
test: use less requests on tcp-write-queue-order
Makes the test reliably pass on Windows, otherwise the runtime aborts.
Diffstat (limited to 'test/test-tcp-write-queue-order.c')
-rw-r--r-- | test/test-tcp-write-queue-order.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-tcp-write-queue-order.c b/test/test-tcp-write-queue-order.c index 18e1f192..aa4d2acc 100644 --- a/test/test-tcp-write-queue-order.c +++ b/test/test-tcp-write-queue-order.c @@ -26,7 +26,7 @@ #include "uv.h" #include "task.h" -#define REQ_COUNT 100000 +#define REQ_COUNT 10000 static uv_timer_t timer; static uv_tcp_t server; |