From e7d9ba135c24dcc833483668c9693018abca8623 Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Tue, 25 May 2021 20:56:35 -0700 Subject: [PATCH] [sim] Disable flaky web server integration tests (#3388) The digital output test sometimes fails on Linux and the digital input test sometimes fails on macOS. --- simulation/halsim_ws_server/src/test/native/cpp/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simulation/halsim_ws_server/src/test/native/cpp/main.cpp b/simulation/halsim_ws_server/src/test/native/cpp/main.cpp index ca9aa555ea..0b4628e462 100644 --- a/simulation/halsim_ws_server/src/test/native/cpp/main.cpp +++ b/simulation/halsim_ws_server/src/test/native/cpp/main.cpp @@ -41,7 +41,7 @@ class WebServerIntegrationTest : public ::testing::Test { HALSimWSServer m_server; }; -TEST_F(WebServerIntegrationTest, DigitalOutput) { +TEST_F(WebServerIntegrationTest, DISABLED_DigitalOutput) { // Create expected results const bool EXPECTED_VALUE = false; const int PIN = 0; @@ -92,7 +92,7 @@ TEST_F(WebServerIntegrationTest, DigitalOutput) { EXPECT_EQ(EXPECTED_VALUE, test_value); } -TEST_F(WebServerIntegrationTest, DigitalInput) { +TEST_F(WebServerIntegrationTest, DISABLED_DigitalInput) { // Create expected results const bool EXPECTED_VALUE = false; const int PIN = 0;