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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
55165b2f
Commit
55165b2f
authored
Aug 16, 2006
by
reggie@big_geek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small fix to enable the test suite to find executables and scripts on Windows
parent
4ef51164
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
mysql-test/lib/mtr_misc.pl
mysql-test/lib/mtr_misc.pl
+16
-2
No files found.
mysql-test/lib/mtr_misc.pl
View file @
55165b2f
...
...
@@ -83,7 +83,14 @@ sub mtr_path_exists (@) {
sub
mtr_script_exists
(@)
{
foreach
my
$path
(
@_
)
{
return
$path
if
-
x
$path
;
if
(
$::glob_win32
)
{
return
$path
if
-
f
$path
;
}
else
{
return
$path
if
-
x
$path
;
}
}
if
(
@_
==
1
)
{
...
...
@@ -108,7 +115,14 @@ sub mtr_exe_exists (@) {
map
{
$_
.=
"
.exe
"}
@path
if
$::glob_win32
;
foreach
my
$path
(
@path
)
{
return
$path
if
-
x
$path
;
if
(
$::glob_win32
)
{
return
$path
if
-
f
$path
;
}
else
{
return
$path
if
-
x
$path
;
}
}
if
(
@path
==
1
)
{
...
...
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