mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Bug#42427 : MTR v2 fails with "can't write to /tmp/mysql-test-ports.sem" on Windows
- /tmp directory is not guaranteed to exist on Windows. Use the value of environment variable TEMP here
This commit is contained in:
@@ -28,7 +28,17 @@ sub msg {
|
|||||||
# print "### unique($$) - ", join(" ", @_), "\n";
|
# print "### unique($$) - ", join(" ", @_), "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
my $file= "/tmp/mysql-test-ports";
|
my $file;
|
||||||
|
|
||||||
|
if(!IS_WINDOWS)
|
||||||
|
{
|
||||||
|
$file= "/tmp/mysql-test-ports";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$file= $ENV{'TEMP'}."/mysql-test-ports";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
my %mtr_unique_ids;
|
my %mtr_unique_ids;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user