Commit f1325549 authored by Alexander Barkov's avatar Alexander Barkov

- Adding cmake code to install ConnectSE mtr tests

- Including "connect" suite into the list of the default suites
parent 671e5cbb
...@@ -166,6 +166,7 @@ my $DEFAULT_SUITES= join(',', map { "$_-" } qw( ...@@ -166,6 +166,7 @@ my $DEFAULT_SUITES= join(',', map { "$_-" } qw(
main main
archive archive
binlog binlog
connect
csv csv
federated federated
funcs_1 funcs_1
...@@ -379,7 +380,6 @@ sub main { ...@@ -379,7 +380,6 @@ sub main {
mtr_report("Logging: $0 ", join(" ", @ARGV)); mtr_report("Logging: $0 ", join(" ", @ARGV));
$DEFAULT_SUITES.= ',' . join(',', qw( $DEFAULT_SUITES.= ',' . join(',', qw(
connect
query_response_time query_response_time
sequence sequence
spider spider
......
...@@ -264,6 +264,19 @@ int main() { ...@@ -264,6 +264,19 @@ int main() {
ENDIF(UNIX) ENDIF(UNIX)
ENDIF(CONNECT_WITH_ODBC) ENDIF(CONNECT_WITH_ODBC)
#
# Installing tests
#
IF(INSTALL_MYSQLTESTDIR)
INSTALL(
DIRECTORY mysql-test/connect
DESTINATION ${INSTALL_MYSQLTESTDIR}/suite
USE_SOURCE_PERMISSIONS
COMPONENT Test
PATTERN "*~" EXCLUDE
)
ENDIF()
# #
# Plugin definition # Plugin definition
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment