Skip to content

Commit

Permalink
Skip testWakeup on mac as flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
jacomago committed Nov 28, 2024
1 parent bf8497c commit 6927827
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/castApp/src/testsock.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

0 comments on commit 6927827

Please sign in to comment.