1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: fix fs_event_watch_file_currentdir flakiness

In FreeBSD 10.2 the test sometimes times out because the "touch file"
timer fires before the "watch file" event has been registered in the
kqueue. Increasing the timeout value seems to fix the issue.

PR-URL: https://github.com/libuv/libuv/pull/581
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Santiago Gimeno 2015-10-20 09:04:45 +02:00 committed by Ben Noordhuis
parent ef47e8b212
commit a0e30b551c

View File

@ -487,7 +487,7 @@ TEST_IMPL(fs_event_watch_file_current_dir) {
r = uv_timer_init(loop, &timer);
ASSERT(r == 0);
r = uv_timer_start(&timer, timer_cb_touch, 1, 0);
r = uv_timer_start(&timer, timer_cb_touch, 10, 0);
ASSERT(r == 0);
ASSERT(timer_cb_touch_called == 0);