diff --git a/client/castApp/src/testsock.c b/client/castApp/src/testsock.c index dadc5be..a688648 100644 --- a/client/castApp/src/testsock.c +++ b/client/castApp/src/testsock.c @@ -103,7 +103,11 @@ MAIN(testsock) testPlan(18); osiSockAttach();; testUDP(); - testWakeup(); + #ifdef __APPLE__ + testSkip(4, "testWakeup is flaky on mac os"); + #else + testWakeup(); + #endif osiSockRelease(); return testDone(); }