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:
parent
3ba87c3700
commit
461cad77b4
@ -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;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user