[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.
This commit is contained in:
Tyler Veness
2021-05-25 20:56:35 -07:00
committed by GitHub
parent 0a0003c110
commit e7d9ba135c

View File

@@ -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;