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
e7b735fb
Commit
e7b735fb
authored
May 15, 2012
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some extra optional path to test suites
parent
b76a59f5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
mysql-test/lib/My/Find.pm
mysql-test/lib/My/Find.pm
+4
-3
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_cases.pm
+4
-3
No files found.
mysql-test/lib/My/Find.pm
View file @
e7b735fb
...
@@ -126,9 +126,9 @@ sub my_find_file {
...
@@ -126,9 +126,9 @@ sub my_find_file {
#
#
#
#
sub
my_find_dir
{
sub
my_find_dir
{
my
(
$base
,
$paths
,
$dirs
,
$
required
)
=
@_
;
my
(
$base
,
$paths
,
$dirs
,
$
optional
)
=
@_
;
croak
"
usage: my_find_dir(<base>, <paths>[, <dirs>])
"
croak
"
usage: my_find_dir(<base>, <paths>[, <dirs>
[, <optional>]
])
"
unless
(
@_
==
3
or
@_
==
2
);
unless
(
@_
==
3
or
@_
==
2
or
@_
==
4
);
# -------------------------------------------------------
# -------------------------------------------------------
# Find and return the first directory
# Find and return the first directory
...
@@ -136,6 +136,7 @@ sub my_find_dir {
...
@@ -136,6 +136,7 @@ sub my_find_dir {
foreach
my
$path
(
my_find_paths
(
$base
,
$paths
,
$dirs
))
{
foreach
my
$path
(
my_find_paths
(
$base
,
$paths
,
$dirs
))
{
return
$path
if
(
-
d
$path
);
return
$path
if
(
-
d
$path
);
}
}
return
""
if
$optional
;
find_error
(
$base
,
$paths
,
$dirs
);
find_error
(
$base
,
$paths
,
$dirs
);
}
}
...
...
mysql-test/lib/mtr_cases.pm
View file @
e7b735fb
...
@@ -127,6 +127,7 @@ sub collect_test_cases ($$$) {
...
@@ -127,6 +127,7 @@ sub collect_test_cases ($$$) {
{
{
push
(
@$cases
,
collect_one_suite
(
$suite
,
$opt_cases
));
push
(
@$cases
,
collect_one_suite
(
$suite
,
$opt_cases
));
last
if
$some_test_found
;
last
if
$some_test_found
;
push
(
@$cases
,
collect_one_suite
("
i_
"
.
$suite
,
$opt_cases
));
}
}
}
}
...
@@ -277,10 +278,10 @@ sub collect_one_suite($)
...
@@ -277,10 +278,10 @@ sub collect_one_suite($)
$suitedir
=
my_find_dir
(
$suitedir
,
$suitedir
=
my_find_dir
(
$suitedir
,
["
suite
",
["
suite
",
"
.
",
"
.
",
# Look in storage engine specific suite dirs
"
../internal/mysql-test/suite
"
"
../storage/*/mysql-test-suites
"
],
],
[
$suite
]);
[
$suite
],
(
$suite
=~
/^i_/
));
return
unless
$suitedir
;
}
}
mtr_verbose
("
suitedir:
$suitedir
");
mtr_verbose
("
suitedir:
$suitedir
");
}
}
...
...
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