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

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.
This commit is contained in:
Ben Noordhuis 2023-11-10 20:17:31 +01:00 committed by GitHub
parent f067f50ae4
commit f01219dfb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,8 +149,9 @@ TEST_IMPL(tcp_writealot) {
uv_tcp_t client; uv_tcp_t client;
int r; int r;
#ifdef __TSAN__ #if defined(__MSAN__) || defined(__TSAN__)
RETURN_SKIP("Test is too slow to run under ThreadSanitizer"); RETURN_SKIP("Test is too slow to run under "
"MemorySanitizer or ThreadSanitizer");
#endif #endif
ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &addr)); ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));