Stop timeout before finishing test

This helps distinguish actual timeouts that happen during the test and
timeouts that happen during the test shutdown.
This commit is contained in:
Markus Mäkelä 2020-11-23 14:19:54 +02:00
parent 36f2af810a
commit 454e9aca14
No known key found for this signature in database
GPG Key ID: 5CE746D557ACC499

View File

@ -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;
}