Disable UvGetAddrInfo Concurrent test on Windows (#1227)

This test likes to intermittently hang for some unknown reason, so disable it.
This commit is contained in:
Peter Johnson
2018-07-27 21:41:04 -07:00
committed by GitHub
parent 63c1f80d60
commit 7fd7192b16

View File

@@ -80,6 +80,7 @@ TEST(UvGetAddrInfo, Basic) {
ASSERT_EQ(getaddrinfo_cbs, 1);
}
#ifndef _WIN32
TEST(UvGetAddrInfo, Concurrent) {
int getaddrinfo_cbs = 0;
int callback_counts[CONCURRENT_COUNT];
@@ -103,6 +104,7 @@ TEST(UvGetAddrInfo, Concurrent) {
ASSERT_EQ(callback_counts[i], 1);
}
}
#endif
} // namespace uv
} // namespace wpi