1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Bug#40193 mtr --record is currently broken in 5.1-rpl and 6.0-rpl

This commit is contained in:
Magnus Svensson
2008-11-10 14:53:53 +01:00
parent 6a58dc5180
commit 4b739dcf45

View File

@ -4397,7 +4397,11 @@ sub start_mysqltest ($) {
{
mtr_add_arg($args, "--record");
mtr_add_arg($args, "--result-file=%s", $tinfo->{record_file});
# When recording to a non existing result file
# the name of that file is in "record_file"
if ( defined $tinfo->{'record_file'} ) {
mtr_add_arg($args, "--result-file=%s", $tinfo->{record_file});
}
}
if ( $opt_client_gdb )