Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
8096efa7
Commit
8096efa7
authored
Jan 20, 2009
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #41420 MTR fails on windows with "The symlink function is unimplemented"
Don't do the symlink if running on Windows
parent
f70f527c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+2
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
8096efa7
...
...
@@ -2442,7 +2442,8 @@ sub setup_vardir() {
mkpath
("
$opt_vardir
/tmp
");
mkpath
(
$opt_tmpdir
)
if
$opt_tmpdir
ne
"
$opt_vardir
/tmp
";
if
(
$master
->
[
0
]
->
{'
path_sock
'}
!~
m/^$opt_tmpdir/
)
# Set up link to master sock if not in var/tmp (not on Windows)
if
(
!
$glob_win32
&&
$master
->
[
0
]
->
{'
path_sock
'}
!~
m/^$opt_tmpdir/
)
{
mtr_report
("
Symlinking
$master
->[0]->{'path_sock'}
");
symlink
(
$master
->
[
0
]
->
{'
path_sock
'},
"
$opt_tmpdir
/master.sock
");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment