From f01219dfb716ceac9cc7dbc70022a197b20d27b3 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 10 Nov 2023 20:17:31 +0100 Subject: [PATCH] test: don't run tcp_writealot under msan (#4214) The test is prone to time out at the best of times, never mind when running under MemorySanitizer. --- test/test-tcp-writealot.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test-tcp-writealot.c b/test/test-tcp-writealot.c index ebafb179..fbfa4984 100644 --- a/test/test-tcp-writealot.c +++ b/test/test-tcp-writealot.c @@ -149,8 +149,9 @@ TEST_IMPL(tcp_writealot) { uv_tcp_t client; int r; -#ifdef __TSAN__ - RETURN_SKIP("Test is too slow to run under ThreadSanitizer"); +#if defined(__MSAN__) || defined(__TSAN__) + RETURN_SKIP("Test is too slow to run under " + "MemorySanitizer or ThreadSanitizer"); #endif ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));