Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c1ea9b4

Browse files
committed
Disable socket test that causes an ICE under msvc x86.
1 parent 7036b19 commit c1ea9b4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/socket_tests.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,9 @@ TEST_CASE("send/recv TCP/IPv4")
206206
}()));
207207
}
208208

209-
#if !CPPCORO_COMPILER_MSVC || CPPCORO_COMPILER_MSVC >= 191626926 || !CPPCORO_CPU_X86
209+
#if !CPPCORO_COMPILER_MSVC || CPPCORO_COMPILER_MSVC > 191627032 || !CPPCORO_CPU_X86
210210
// HACK: Don't compile this function under MSVC x86.
211-
// It results in an ICE under VS 2017.8 / 2017.9 Preview 1.
212-
// Seems to be fixed in 2017.9 Preview 3
211+
// It results in an ICE under VS 2017.15 and earlier.
213212

214213
TEST_CASE("send/recv TCP/IPv4 many connections")
215214
{

0 commit comments

Comments
 (0)