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
f7a1af27
Commit
f7a1af27
authored
Jan 24, 2011
by
Magnus Blåudd
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
26380aec
702282ea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+16
-2
No files found.
mysql-test/mysql-test-run.pl
View file @
f7a1af27
...
...
@@ -108,6 +108,7 @@ require "lib/mtr_misc.pl";
$SIG
{
INT
}
=
sub
{
mtr_error
("
Got ^C signal
");
};
our
$mysql_version_id
;
my
$mysql_version_extra
;
our
$glob_mysql_test_dir
;
our
$basedir
;
our
$bindir
;
...
...
@@ -1667,12 +1668,13 @@ sub collect_mysqld_features {
# Look for version
my
$exe_name
=
basename
(
$exe_mysqld
);
mtr_verbose
("
exe_name:
$exe_name
");
if
(
$line
=~
/^\S*$exe_name\s\sVer\s([0-9]*)\.([0-9]*)\.([0-9]*)/
)
if
(
$line
=~
/^\S*$exe_name\s\sVer\s([0-9]*)\.([0-9]*)\.([0-9]*)
([^\s]*)
/
)
{
#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
");
$mysql_version_extra
=
$4
;
}
}
else
...
...
@@ -1757,12 +1759,13 @@ sub collect_mysqld_features_from_running_server ()
# Parse version
my
$version_str
=
$mysqld_variables
{'
version
'};
if
(
$version_str
=~
/^([0-9]*)\.([0-9]*)\.([0-9]*)/
)
if
(
$version_str
=~
/^([0-9]*)\.([0-9]*)\.([0-9]*)
([^\s]*)
/
)
{
#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
");
$mysql_version_extra
=
$4
;
}
mtr_error
("
Could not find version of MySQL
")
unless
$mysql_version_id
;
}
...
...
@@ -2538,6 +2541,17 @@ sub vs_config_dirs ($$) {
sub
check_ndbcluster_support
($)
{
my
$mysqld_variables
=
shift
;
# Check if this is MySQL Cluster, ie. mysql version string ends
# with -ndb-Y.Y.Y[-status]
if
(
defined
$mysql_version_extra
&&
$mysql_version_extra
=~
/^-ndb-/
)
{
mtr_report
("
- MySQL Cluster
");
# Enable ndb engine and add more test suites
$opt_include_ndbcluster
=
1
;
$DEFAULT_SUITES
.=
"
,ndb
";
}
if
(
$opt_include_ndbcluster
)
{
$opt_skip_ndbcluster
=
0
;
...
...
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