From b59e6a4baff0e3e23b80884813fbb7f0d5861065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Mon, 21 May 2018 19:50:13 +0300 Subject: [PATCH] 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. --- maxscale-system-test/different_size.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maxscale-system-test/different_size.cpp b/maxscale-system-test/different_size.cpp index 171ab7b52..ead4c9a79 100644 --- a/maxscale-system-test/different_size.cpp +++ b/maxscale-system-test/different_size.cpp @@ -81,7 +81,7 @@ void different_packet_size(TestConnections* Test, bool binlog) { size_t size = 0x0ffffff * i + j; Test->tprintf("Trying event app. %lu bytes", size); - Test->set_timeout(240); + Test->set_timeout(300); char* event = create_event_size(size); conn = connect_to_serv(Test, binlog);