1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

WL#4350 Fix --record and no .result file

This commit is contained in:
Magnus Svensson
2008-09-11 22:05:44 +02:00
parent d3659a3ee6
commit b928473b71
2 changed files with 15 additions and 6 deletions

View File

@ -2638,12 +2638,14 @@ sub do_before_run_mysqltest($)
my $tinfo= shift;
# Remove old files produced by mysqltest
my $base_file= mtr_match_extension($tinfo->{'result_file'},
"result"); # Trim extension
unlink("$base_file.reject");
unlink("$base_file.progress");
unlink("$base_file.log");
unlink("$base_file.warnings");
my $base_file= mtr_match_extension($tinfo->{result_file},
"result"); # Trim extension
if (defined $base_file ){
unlink("$base_file.reject");
unlink("$base_file.progress");
unlink("$base_file.log");
unlink("$base_file.warnings");
}
if ( $mysql_version_id < 50000 ) {
# Set environment variable NDB_STATUS_OK to 1
@ -4332,6 +4334,7 @@ sub start_mysqltest ($) {
if ( $opt_record )
{
mtr_add_arg($args, "--record");
mtr_add_arg($args, "--result-file=%s", $tinfo->{record_file});
}
if ( $opt_client_gdb )