From 3968f09ae1cd3e8c4e73729cbccf2587ff669203 Mon Sep 17 00:00:00 2001 From: cheatfate Date: Fri, 17 Jul 2020 09:38:58 +0300 Subject: [PATCH] Skip flaky test on MacOS. --- tests/teststream.nim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/teststream.nim b/tests/teststream.nim index 4f55805..3e6ab30 100644 --- a/tests/teststream.nim +++ b/tests/teststream.nim @@ -1197,7 +1197,10 @@ suite "Stream Transport test suite": test prefixes[i] & m16: check waitFor(test16(addresses[i])) == 1 test prefixes[i] & "Connection reset test on send() only": - check waitFor(testWriteConnReset(addresses[i])) == 1 + when defined(macos): + skip() + else: + check waitFor(testWriteConnReset(addresses[i])) == 1 test prefixes[i] & m17: if addresses[i].family == AddressFamily.IPv4: check waitFor(testAnyAddress()) == true