Increase the timeouts different_size

A slight increase of the timeout to 300 seconds should solve some test
failures. The test is extremely hard on the machines and even when run
locally, the test slows down to a crawl.
This commit is contained in:
Markus Mäkelä
2018-05-21 19:50:13 +03:00
parent a33f09ad06
commit b59e6a4baf

View File

@ -81,7 +81,7 @@ void different_packet_size(TestConnections* Test, bool binlog)
{ {
size_t size = 0x0ffffff * i + j; size_t size = 0x0ffffff * i + j;
Test->tprintf("Trying event app. %lu bytes", size); Test->tprintf("Trying event app. %lu bytes", size);
Test->set_timeout(240); Test->set_timeout(300);
char* event = create_event_size(size); char* event = create_event_size(size);
conn = connect_to_serv(Test, binlog); conn = connect_to_serv(Test, binlog);