refactored tests (#147)

This commit is contained in:
Timofey Turenko
2017-12-08 12:23:04 +02:00
committed by GitHub
parent c6daf8c26b
commit 3c88bf1ec6
253 changed files with 5265 additions and 3649 deletions

View File

@ -25,9 +25,9 @@ int main(int argc, char *argv[])
{
TestConnections * Test = new TestConnections(argc, argv);
Test->set_timeout(10);
Test->check_log_err((char *) "Unable to find filter 'non existing filter", true);
//global_result =Test->check_log_err((char *) "не существуюший фильтер", true);
//global_result +=Test->check_maxscale_alive();
Test->check_log_err(0, (char *) "Unable to find filter 'non existing filter", true);
//global_result =Test->check_log_err(0, (char *) "не существуюший фильтер", true);
//global_result +=Test->check_maxscale_alive(0);
int rval = Test->global_result;
delete Test;
return rval;