From c70ce9b95f5a22d3e639be60e37c3ea8e62bd9a6 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Sat, 23 May 2020 14:46:24 -0400 Subject: [PATCH] test: extend fs_event_error_reporting timeout This test was consistently timing out on macOS. Some printf() debugging on the CI showed that the test was still making forward progress, but legitimately timed out. This commit bumps the test timeout to a value that should provide much more than enough time. Fixes: https://github.com/libuv/libuv/issues/2775 PR-URL: https://github.com/libuv/libuv/pull/2865 Reviewed-By: Richard Lau Reviewed-By: Ben Noordhuis Reviewed-By: Jiawen Geng --- 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 24a8a657..6146434e 100644 --- a/test/test-list.h +++ b/test/test-list.h @@ -1010,7 +1010,7 @@ TASK_LIST_START TEST_ENTRY (fs_event_close_with_pending_event) TEST_ENTRY (fs_event_close_in_callback) TEST_ENTRY (fs_event_start_and_close) - TEST_ENTRY (fs_event_error_reporting) + TEST_ENTRY_CUSTOM (fs_event_error_reporting, 0, 0, 60000) TEST_ENTRY (fs_event_getpath) TEST_ENTRY (fs_scandir_empty_dir) TEST_ENTRY (fs_scandir_non_existent_dir)