mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Bug #42590 MTR v1 crashes under Active State Perl
Perl crashes when MTR 2 tries to start v1 Replaced require with system()
This commit is contained in:
@ -45,8 +45,8 @@ BEGIN {
|
|||||||
print "=======================================================\n";
|
print "=======================================================\n";
|
||||||
print " WARNING: Using mysql-test-run.pl version 1! \n";
|
print " WARNING: Using mysql-test-run.pl version 1! \n";
|
||||||
print "=======================================================\n";
|
print "=======================================================\n";
|
||||||
require "lib/v1/mysql-test-run.pl";
|
# Should use exec() here on *nix but this appears not to work on Windows
|
||||||
exit(1);
|
exit(system($^X, "lib/v1/mysql-test-run.pl", @ARGV) >> 8);
|
||||||
}
|
}
|
||||||
elsif ( $version == 2 )
|
elsif ( $version == 2 )
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user