1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for BUG#22074: mysql-test-run.pl abort test run if it fails

to start instance manager.

The problem was that if IM failed to start, test suite aborts.

The fix is to mark current test as failed, and continue running
test suite.

The fix affects only test suite.
This commit is contained in:
anozdrin/alik@alik.
2006-09-08 16:41:35 +04:00
parent f564e7f8a5
commit c9e76d514a

View File

@ -2114,7 +2114,10 @@ sub run_testcase ($) {
unless ( mtr_im_start($instance_manager, $tinfo->{im_opts}) )
{
mtr_error("Failed to start Instance Manager.")
report_failure_and_restart($tinfo);
mtr_report("Failed to start Instance Manager. " .
"The test '$tname' is marked as failed.");
return;
}
}