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
59f38e91
Commit
59f38e91
authored
Oct 24, 2012
by
Tor Didriksen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#14737559 BZR JOIN PLUGIN TREES INTO INTERNAL/PLUGIN
Part three: Fix some search paths.
parent
5b69caf4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
cmake/install_layout.cmake
cmake/install_layout.cmake
+4
-1
cmake/plugin.cmake
cmake/plugin.cmake
+1
-0
mysql-test/lib/mtr_cases.pm
mysql-test/lib/mtr_cases.pm
+1
-0
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+1
-0
No files found.
cmake/install_layout.cmake
View file @
59f38e91
...
...
@@ -104,7 +104,10 @@ ENDIF()
# just use if(INSTALL_PLUGINTESTDIR).
# The plugin must set its own install path for tests
#
FILE
(
GLOB plugin_tests
${
CMAKE_SOURCE_DIR
}
/plugin/*/tests
)
FILE
(
GLOB plugin_tests
${
CMAKE_SOURCE_DIR
}
/plugin/*/tests
${
CMAKE_SOURCE_DIR
}
/internal/plugin/*/tests
)
#
# STANDALONE layout
...
...
cmake/plugin.cmake
View file @
59f38e91
...
...
@@ -39,6 +39,7 @@ MACRO(PLUGIN_APPEND_COLLECTIONS plugin)
GET_FILENAME_COMPONENT
(
fname
${
cfile
}
NAME
)
FILE
(
APPEND
${
CMAKE_SOURCE_DIR
}
/mysql-test/collections/
${
fname
}
"
${
contents
}
"
)
FILE
(
APPEND
${
fcopied
}
"
${
fname
}
\n
"
)
MESSAGE
(
STATUS
"Appended
${
cfile
}
"
)
ENDFOREACH
()
ENDIF
()
ENDMACRO
()
...
...
mysql-test/lib/mtr_cases.pm
View file @
59f38e91
...
...
@@ -295,6 +295,7 @@ sub collect_one_suite($)
"
storage/*/mtr
",
# Look in plugin specific suite dir
"
plugin/
$suite
/tests
",
"
internal/plugin/
$suite
/tests
",
],
[
$suite
,
"
mtr
"],
(
$suite
=~
/^i_/
));
return
unless
$suitedir
;
...
...
mysql-test/mysql-test-run.pl
View file @
59f38e91
...
...
@@ -459,6 +459,7 @@ sub main {
# Also read from any plugin local or suite specific plugin.defs
for
(
glob
"
$basedir
/plugin/*/tests/mtr/plugin.defs
"
.
"
$basedir
/internal/plugin/*/tests/mtr/plugin.defs
"
.
"
suite/*/plugin.defs
")
{
read_plugin_defs
(
$_
);
}
...
...
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