From 4b739dcf4516f1d073ddcd6fe66a3559b2ee56cd Mon Sep 17 00:00:00 2001 From: Magnus Svensson Date: Mon, 10 Nov 2008 14:53:53 +0100 Subject: [PATCH] Bug#40193 mtr --record is currently broken in 5.1-rpl and 6.0-rpl --- mysql-test/mysql-test-run.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 245b655767d..05534ed9680 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -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 )