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:
parent
f067f50ae4
commit
f01219dfb7
@ -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));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user