diff options
| author | Garrett D'Amore <garrett@damore.org> | 2024-12-30 13:11:53 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2024-12-30 13:20:38 -0800 |
| commit | fcc39223cfbd68d14a30b32a8be4f3fe0ab25e1c (patch) | |
| tree | 92d8274d3274fcde44c2d30d832bc63203f95ea6 /src/platform | |
| parent | 39e503d7e6b01087f7135b443e4215e2b4b0e9e4 (diff) | |
| download | nng-fcc39223cfbd68d14a30b32a8be4f3fe0ab25e1c.tar.gz nng-fcc39223cfbd68d14a30b32a8be4f3fe0ab25e1c.tar.bz2 nng-fcc39223cfbd68d14a30b32a8be4f3fe0ab25e1c.zip | |
bump test timeouts for CI/CD
Diffstat (limited to 'src/platform')
| -rw-r--r-- | src/platform/ipc_stream_test.c | 4 | ||||
| -rw-r--r-- | src/platform/tcp_stream_test.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/platform/ipc_stream_test.c b/src/platform/ipc_stream_test.c index 4cc7f16d..e1ee86b0 100644 --- a/src/platform/ipc_stream_test.c +++ b/src/platform/ipc_stream_test.c @@ -124,8 +124,8 @@ test_ipc_listen_activation(void) NUTS_PASS(nng_aio_alloc(&aio1, NULL, NULL)); NUTS_PASS(nng_aio_alloc(&aio2, NULL, NULL)); - nng_aio_set_timeout(aio1, 2000); - nng_aio_set_timeout(aio2, 2000); + nng_aio_set_timeout(aio1, 20000); + nng_aio_set_timeout(aio2, 20000); NUTS_PASS(nng_stream_listener_alloc(&l1, addr)); NUTS_PASS(nng_stream_listener_listen(l1)); diff --git a/src/platform/tcp_stream_test.c b/src/platform/tcp_stream_test.c index f8b8d14a..b9c20844 100644 --- a/src/platform/tcp_stream_test.c +++ b/src/platform/tcp_stream_test.c @@ -280,8 +280,8 @@ test_tcp_listen_activation(void) NUTS_PASS(nng_aio_alloc(&aio1, NULL, NULL)); NUTS_PASS(nng_aio_alloc(&aio2, NULL, NULL)); - nng_aio_set_timeout(aio1, 2000); - nng_aio_set_timeout(aio2, 2000); + nng_aio_set_timeout(aio1, 20000); + nng_aio_set_timeout(aio2, 20000); s = socket(AF_INET, SOCK_STREAM, 0); sin.sin_family = AF_INET; |
