Commit 3e43817f authored by Bjorn Munch's avatar Bjorn Munch

merge 48130 and 48133 from 5.1

parents 2bbe4cc8 6c680198
...@@ -146,6 +146,7 @@ sub mtr_report_test ($) { ...@@ -146,6 +146,7 @@ sub mtr_report_test ($) {
} }
} }
$fail = "exp-fail"; $fail = "exp-fail";
$tinfo->{exp_fail}= 1;
last; last;
} }
} }
......
...@@ -519,7 +519,8 @@ sub run_test_server ($$$) { ...@@ -519,7 +519,8 @@ sub run_test_server ($$$) {
} }
} }
$num_saved_datadir++; $num_saved_datadir++;
$num_failed_test++ unless $result->{retries}; $num_failed_test++ unless ($result->{retries} ||
$result->{exp_fail});
if ( !$opt_force ) { if ( !$opt_force ) {
# Test has failed, force is off # Test has failed, force is off
...@@ -4709,7 +4710,8 @@ sub start_servers($) { ...@@ -4709,7 +4710,8 @@ sub start_servers($) {
my $logfile= $mysqld->value('#log-error'); my $logfile= $mysqld->value('#log-error');
if ( defined $logfile and -f $logfile ) if ( defined $logfile and -f $logfile )
{ {
$tinfo->{logfile}= mtr_fromfile($logfile); my @srv_lines= extract_server_log($logfile, $tinfo->{name});
$tinfo->{logfile}= "Server log is:\n" . join ("", @srv_lines);
} }
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment