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

test: cond-skip tcp_writealot

Too slow to run under ThreadSanitizer.

Refs: https://github.com/libuv/libuv/issues/3681
This commit is contained in:
Ben Noordhuis 2023-01-19 14:09:15 +01:00
parent bcbaf671a9
commit a3b7dfcfca

View File

@ -149,6 +149,10 @@ TEST_IMPL(tcp_writealot) {
uv_tcp_t client;
int r;
#ifdef __TSAN__
RETURN_SKIP("Test is too slow to run under ThreadSanitizer");
#endif
ASSERT(0 == uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));
send_buffer = calloc(1, TOTAL_BYTES);