Enable info log for failing tests

The three tests appear to hang in unexpected places. Enabling the info log
should reveal where the hang happens.
This commit is contained in:
Markus Mäkelä 2018-05-02 08:44:54 +03:00
parent 09b6668064
commit 4b95bbc7b8
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19
3 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,7 @@ int main(int argc, char* argv[])
{
TestConnections test(argc, argv);
test.maxscales->ssh_node_f(0, true, "maxadmin enable log-priority info");
test.maxscales->connect();
test.try_query(test.maxscales->conn_rwsplit[0], "CREATE OR REPLACE TABLE test.t1(id INT)");

View File

@ -29,6 +29,7 @@ int main(int argc, char* argv[])
{
TestConnections test(argc, argv);
test.maxscales->ssh_node_f(0, true, "maxadmin enable log-priority info");
test.maxscales->connect();
execute_query(test.maxscales->conn_rwsplit[0], "USE test");

View File

@ -58,6 +58,7 @@ int main(int argc, char** argv)
{
TestConnections test(argc, argv);
test.maxscales->ssh_node_f(0, true, "maxadmin enable log-priority info");
test.maxscales->connect();
double_cursor(test, test.maxscales->conn_rwsplit[0]);
test.maxscales->disconnect();