test: skip signal_multiple_loops test on QEMU
Fixes: https://github.com/libuv/libuv/issues/2859 PR-URL: https://github.com/libuv/libuv/pull/2860 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
parent
7967448696
commit
91a38b18c6
@ -199,6 +199,11 @@ TEST_IMPL(signal_multiple_loops) {
|
||||
though it is supposed to be blocking. Also the test hangs during
|
||||
thread setup occasionally. */
|
||||
RETURN_SKIP("FIXME: This test needs more investigation on Cygwin");
|
||||
#endif
|
||||
/* TODO(gengjiawen): Fix test on QEMU. */
|
||||
#if defined(__QEMU__)
|
||||
// See https://github.com/libuv/libuv/issues/2859
|
||||
RETURN_SKIP("QEMU's signal emulation code is notoriously tricky");
|
||||
#endif
|
||||
uv_thread_t loop_creating_threads[NUM_LOOP_CREATING_THREADS];
|
||||
uv_thread_t signal_handling_threads[NUM_SIGNAL_HANDLING_THREADS];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user