mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Remove framework load, disable mac timeout test (#1676)
* Remove system includes from all mac builds * Disable java watchdog on mac
This commit is contained in:
committed by
Peter Johnson
parent
1c454b000f
commit
698edfda9d
@@ -62,7 +62,11 @@ TEST(WatchdogTest, Reset) {
|
||||
EXPECT_EQ(0u, watchdogCounter) << "Watchdog triggered early";
|
||||
}
|
||||
|
||||
#ifdef __APPLE__
|
||||
TEST(WatchdogTest, DISABLED_SetTimeout) {
|
||||
#else
|
||||
TEST(WatchdogTest, SetTimeout) {
|
||||
#endif
|
||||
uint32_t watchdogCounter = 0;
|
||||
|
||||
Watchdog watchdog(1.0, [&] { watchdogCounter++; });
|
||||
|
||||
Reference in New Issue
Block a user