Make timeouts in tests more forgiving for CI that occasionally fails

This commit is contained in:
baldurk
2019-02-01 18:32:11 +00:00
parent 38f68e1534
commit 5854810fd4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -301,7 +301,7 @@ TEST_CASE("Test OS-specific functions", "[osspecific]")
CHECK(milliseconds1 < 1.0);
CHECK(milliseconds2 > 1480.0);
CHECK(milliseconds2 < 1580.0);
CHECK(milliseconds2 < 1650.0);
}
// timestamp as of the creation of this test
+1 -1
View File
@@ -115,7 +115,7 @@ TEST_CASE("Test stream I/O operations over the network", "[streamio][network]")
REQUIRE(sender);
Network::Socket *receiver = server->AcceptClient(50);
Network::Socket *receiver = server->AcceptClient(250);
REQUIRE(receiver);