From 454e9aca1430f3d914dadb28ebca20ac6945ba78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Mon, 23 Nov 2020 14:19:54 +0200 Subject: [PATCH] Stop timeout before finishing test This helps distinguish actual timeouts that happen during the test and timeouts that happen during the test shutdown. --- system-test/mxs1787_call_ps.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system-test/mxs1787_call_ps.cpp b/system-test/mxs1787_call_ps.cpp index 11222e2e9..d8af154e4 100644 --- a/system-test/mxs1787_call_ps.cpp +++ b/system-test/mxs1787_call_ps.cpp @@ -64,5 +64,7 @@ int main(int argc, char* argv[]) test.expect(mysql_query(test.maxscales->conn_rwsplit[0], "SELECT 1") == 0, "Normal queries should work"); test.maxscales->disconnect(); + test.stop_timeout(); + return test.global_result; }