From c21a75a16cf96b42e659f01ad2209d4968377c71 Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Tue, 19 Jan 2016 17:33:50 -0500 Subject: [PATCH] test: fix threadpool_multiple_event_loops for AIX MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disabled the filesystem portion of the test as there are known issues with AIX and its fs. This particular test was failing with a timeout. PR-URL: https://github.com/libuv/libuv/pull/689 Reviewed-By: Ben Noordhuis Reviewed-By: Saúl Ibarra Corretgé --- test/test-thread.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/test-thread.c b/test/test-thread.c index 10bec3fe..94524ae9 100644 --- a/test/test-thread.c +++ b/test/test-thread.c @@ -123,12 +123,17 @@ static void do_work(void* arg) { getaddrinfo_do(req); } +/* Disable fs work on AIX as there are known issues. + * See: Readme.md AIX Notes + */ +#ifndef _AIX for (i = 0; i < ARRAY_SIZE(fs_reqs); i++) { struct fs_req* req = fs_reqs + i; req->counter = 16; req->loop = loop; fs_do(req); } +#endif r = uv_run(loop, UV_RUN_DEFAULT); ASSERT(r == 0);