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
d98d53b3
Commit
d98d53b3
authored
Sep 05, 2008
by
Magnus Svensson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#35482 mysql-test-run have_innodb does not detect external server has Innodb support
parent
adfbb43c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
14 deletions
+58
-14
mysql-test/lib/My/Find.pm
mysql-test/lib/My/Find.pm
+1
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+57
-13
No files found.
mysql-test/lib/My/Find.pm
View file @
d98d53b3
...
...
@@ -53,7 +53,7 @@ sub NOT_REQUIRED { return 0; }
# binary is not found
# my $mysql_exe= my_find_bin($basedir,
# ["client", "bin"],
# "mysql",
0
);
# "mysql",
NOT_REQUIRED
);
#
# NOTE: The function honours MTR_VS_CONFIG environment variable
#
...
...
mysql-test/mysql-test-run.pl
View file @
d98d53b3
...
...
@@ -167,7 +167,7 @@ my $opt_retry_failure= 2;
my
$opt_strace_client
;
our
$opt_user
;
our
$opt_user
=
"
root
"
;
my
$opt_valgrind
=
0
;
my
$opt_valgrind_mysqld
=
0
;
...
...
@@ -906,8 +906,16 @@ sub command_line_setup {
"
$basedir
/scripts
");
}
# Run the mysqld to find out what features are available
collect_mysqld_features
();
if
(
using_extern
())
{
# Connect to the running mysqld and find out what it supports
collect_mysqld_features_from_running_server
();
}
else
{
# Run the mysqld to find out what features are available
collect_mysqld_features
();
}
if
(
$opt_comment
)
{
...
...
@@ -1170,11 +1178,6 @@ sub command_line_setup {
join
("
",
@valgrind_args
),
"
\"
");
}
if
(
!
$opt_user
)
{
$opt_user
=
"
root
";
# We want to do FLUSH xxx commands
}
mtr_report
("
Checking supported features...
");
check_ndbcluster_support
(
\%
mysqld_variables
);
...
...
@@ -1322,6 +1325,50 @@ sub collect_mysqld_features {
}
sub
collect_mysqld_features_from_running_server
()
{
my
$mysql
=
mtr_exe_exists
("
$path_client_bindir
/mysql
");
my
$args
;
mtr_init_args
(
\
$args
);
mtr_add_arg
(
$args
,
"
--no-defaults
");
mtr_add_arg
(
$args
,
"
--user=%s
",
$opt_user
);
while
(
my
(
$option
,
$value
)
=
each
(
%
opts_extern
))
{
mtr_add_arg
(
$args
,
"
--
$option
=
$value
");
}
mtr_add_arg
(
$args
,
"
--silent
");
# Tab separated output
mtr_add_arg
(
$args
,
"
-e '%s'
",
"
use mysql; SHOW VARIABLES
");
my
$cmd
=
"
$mysql
"
.
join
('
',
@$args
);
mtr_verbose
("
cmd:
$cmd
");
my
$list
=
`
$cmd
`
or
mtr_error
("
Could not connect to extern server using command: '
$cmd
'
");
foreach
my
$line
(
split
('
\
n
',
$list
))
{
# Put variables into hash
if
(
$line
=~
/^([\S]+)[ \t]+(.*?)\r?$/
)
{
# print "$1=\"$2\"\n";
$mysqld_variables
{
$1
}
=
$2
;
}
}
# Parse version
my
$version_str
=
$mysqld_variables
{'
version
'};
if
(
$version_str
=~
/^([0-9]*)\.([0-9]*)\.([0-9]*)/
)
{
#print "Major: $1 Minor: $2 Build: $3\n";
$mysql_version_id
=
$1
*
10000
+
$2
*
100
+
$3
;
#print "mysql_version_id: $mysql_version_id\n";
mtr_report
("
MySQL Version $1.$2.$3
");
}
mtr_error
("
Could not find version of MySQL
")
unless
$mysql_version_id
;
}
sub
find_mysqld
{
my
(
$mysqld_basedir
)
=
@_
;
...
...
@@ -2218,7 +2265,7 @@ sub create_config_file_for_extern {
(
socket
=>
'
/tmp/mysqld.sock
',
port
=>
3306
,
user
=>
'
test
'
,
user
=>
$opt_user
,
password
=>
'',
@_
);
...
...
@@ -4626,9 +4673,6 @@ Options to run test on running server
For example:
./$0 --extern socket=/tmp/mysqld.sock
user=USER User for connection to extern server
socket=PATH Socket for connection to extern server
Options for debugging the product
client-ddd Start mysqltest client in ddd
...
...
@@ -4675,7 +4719,7 @@ Options for valgrind
callgrind Instruct valgrind to use callgrind
Misc options
user=USER User for connecting to mysqld(default: $opt_user)
comment=STR Write STR to the output
notimer Don't show test case execution time
verbose More verbose output(use multiple times for even more)
...
...
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