From 4a6087ed5682dfe72921b939e041b4a9a5176787 Mon Sep 17 00:00:00 2001 From: Thad House Date: Wed, 30 Jan 2019 20:35:16 -0800 Subject: [PATCH] Disable watchdog test on mac (#1578) It can't be held property on the asure test system --- wpilibc/src/test/native/cpp/WatchdogTest.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wpilibc/src/test/native/cpp/WatchdogTest.cpp b/wpilibc/src/test/native/cpp/WatchdogTest.cpp index 141c72e3cb..a0e4ada7cd 100644 --- a/wpilibc/src/test/native/cpp/WatchdogTest.cpp +++ b/wpilibc/src/test/native/cpp/WatchdogTest.cpp @@ -118,7 +118,11 @@ TEST(WatchdogTest, Epochs) { EXPECT_EQ(0u, watchdogCounter) << "Watchdog triggered early"; } +#ifdef __APPLE__ +TEST(WatchdogTest, DISABLED_MultiWatchdog) { +#else TEST(WatchdogTest, MultiWatchdog) { +#endif uint32_t watchdogCounter1 = 0; uint32_t watchdogCounter2 = 0;