Browse Source

Bug #58424 mtr ignores failing mysqltest in the presence of expect file for mysqld

If mysqltest dies, mtr waits to see if mysqld dies too within 100ms
But in that case, it should not care about expected crash
Fix: jump past the code that checks the expect file
pull/374/head
Bjorn Munch 15 years ago
parent
commit
a2cbe6e949
  1. 2
      mysql-test/mysql-test-run.pl

2
mysql-test/mysql-test-run.pl

@ -3673,7 +3673,6 @@ sub run_testcase ($) {
# ----------------------------------------------------
# Check if it was an expected crash
# ----------------------------------------------------
SRVDIED:
my $check_crash = check_expected_crash_and_restart($proc);
if ($check_crash)
{
@ -3683,6 +3682,7 @@ sub run_testcase ($) {
next;
}
SRVDIED:
# ----------------------------------------------------
# Stop the test case timer
# ----------------------------------------------------

Loading…
Cancel
Save