Completely disable watchdog tests on mac (#1679)

They’re just not reliable.
This commit is contained in:
Thad House
2019-05-05 15:51:14 -07:00
committed by Peter Johnson
parent 698edfda9d
commit 7732836bd5
2 changed files with 17 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
@DisabledOnOs(OS.MAC)
class WatchdogTest {
@Test
void enableDisableTest() {
@@ -189,7 +190,6 @@ class WatchdogTest {
}
@Test
@DisabledOnOs(OS.MAC)
void multiWatchdogTest() {
final AtomicInteger watchdogCounter1 = new AtomicInteger(0);
final AtomicInteger watchdogCounter2 = new AtomicInteger(0);