From fddcd14825e868434484f0d855aaf4db5a09bfac Mon Sep 17 00:00:00 2001 From: cjihrig Date: Mon, 20 May 2019 12:36:31 -0400 Subject: [PATCH] test: increase test timeout The test threadpool_multiple_event_loops has been timing out consistently on FreeBSD in the CI. This commit attempts to mitigate the problem by extending the test timeout. PR-URL: https://github.com/libuv/libuv/pull/2304 Reviewed-By: Ben Noordhuis Reviewed-By: Santiago Gimeno --- test/test-list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-list.h b/test/test-list.h index c090854b..8886b07c 100644 --- a/test/test-list.h +++ b/test/test-list.h @@ -963,7 +963,7 @@ TASK_LIST_START TEST_ENTRY (strscpy) TEST_ENTRY (threadpool_queue_work_simple) TEST_ENTRY (threadpool_queue_work_einval) - TEST_ENTRY (threadpool_multiple_event_loops) + TEST_ENTRY_CUSTOM (threadpool_multiple_event_loops, 0, 0, 60000) TEST_ENTRY (threadpool_cancel_getaddrinfo) TEST_ENTRY (threadpool_cancel_getnameinfo) TEST_ENTRY (threadpool_cancel_work)