mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge 10.3 into 10.4
This commit is contained in:
@ -3597,8 +3597,11 @@ sub do_before_run_mysqltest($)
|
||||
# to be able to distinguish them from manually created
|
||||
# version-controlled results, and to ignore them in git.
|
||||
my $dest = "$base_file$suites.result~";
|
||||
my @cmd = ($exe_patch, qw/--binary -r - -f -s -o/,
|
||||
$dest, $base_result, $resfile);
|
||||
my @cmd = ($exe_patch);
|
||||
if ($^O eq "MSWin32") {
|
||||
push @cmd, '--binary';
|
||||
}
|
||||
push @cmd, (qw/-r - -f -s -o/, $dest, $base_result, $resfile);
|
||||
if (-w $resdir) {
|
||||
# don't rebuild a file if it's up to date
|
||||
unless (-e $dest and -M $dest < -M $resfile
|
||||
|
Reference in New Issue
Block a user