Fail test GCC TSAN (#61)
* test that fails on Run 8 * commented the failing test
This commit is contained in:
parent
094b5834b7
commit
fe04014e1c
@ -120,7 +120,7 @@ TEST_CASE("websocket_connections", "[websocket]")
|
|||||||
chatA.stop();
|
chatA.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
SECTION("Try to connect and disconnect with different timing.")
|
SECTION("Try to connect and disconnect with different timing, not enough time to succesfully connect")
|
||||||
{
|
{
|
||||||
IXWebSocketTestConnectionDisconnection chatA;
|
IXWebSocketTestConnectionDisconnection chatA;
|
||||||
for (int i = 0; i < 50; ++i)
|
for (int i = 0; i < 50; ++i)
|
||||||
@ -131,4 +131,16 @@ TEST_CASE("websocket_connections", "[websocket]")
|
|||||||
chatA.stop();
|
chatA.stop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*SECTION("Try to connect and disconnect with different timing, from not enough time to successfull connect")
|
||||||
|
{
|
||||||
|
IXWebSocketTestConnectionDisconnection chatA;
|
||||||
|
for (int i = 0; i < 20; ++i)
|
||||||
|
{
|
||||||
|
log(std::string("Run: ") + std::to_string(i));
|
||||||
|
chatA.start(WEBSOCKET_DOT_ORG_URL);
|
||||||
|
ix::msleep(i*50);
|
||||||
|
chatA.stop();
|
||||||
|
}
|
||||||
|
}*/
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user