Skip to content

Commit bb287b6

Browse files
committed
Skip testWakeup on mac as flaky
1 parent 29530f2 commit bb287b6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

client/castApp/src/testsock.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,11 @@ MAIN(testsock)
103103
testPlan(18);
104104
osiSockAttach();;
105105
testUDP();
106-
testWakeup();
106+
#ifdef __APPLE__
107+
testSkip(4, "testWakeup is flaky on mac os");
108+
#else
109+
testWakeup();
110+
#endif
107111
osiSockRelease();
108112
return testDone();
109113
}

0 commit comments

Comments
 (0)