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
6c253007
Commit
6c253007
authored
Feb 08, 2005
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndbcluster now runs clean in 4.1, 5.0 may still need some work
parent
9a1e2570
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
112 additions
and
40 deletions
+112
-40
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+112
-40
No files found.
mysql-test/mysql-test-run.pl
View file @
6c253007
...
@@ -284,6 +284,11 @@ our $opt_warnings;
...
@@ -284,6 +284,11 @@ our $opt_warnings;
our
$opt_with_ndbcluster
;
our
$opt_with_ndbcluster
;
our
$opt_with_openssl
;
our
$opt_with_openssl
;
our
$exe_ndb_mgm
;
our
$path_ndb_tools_dir
;
our
$path_ndb_backup_dir
;
our
$file_ndb_testrun_log
;
our
$flag_ndb_status_ok
=
1
;
######################################################################
######################################################################
#
#
...
@@ -297,6 +302,7 @@ sub command_line_setup ();
...
@@ -297,6 +302,7 @@ sub command_line_setup ();
sub
executable_setup
();
sub
executable_setup
();
sub
environment_setup
();
sub
environment_setup
();
sub
kill_and_cleanup
();
sub
kill_and_cleanup
();
sub
ndbcluster_install
();
sub
ndbcluster_start
();
sub
ndbcluster_start
();
sub
ndbcluster_stop
();
sub
ndbcluster_stop
();
sub
run_benchmarks
($);
sub
run_benchmarks
($);
...
@@ -346,18 +352,12 @@ sub main () {
...
@@ -346,18 +352,12 @@ sub main () {
kill_and_cleanup
();
kill_and_cleanup
();
mysql_install_db
();
mysql_install_db
();
if
(
$opt_with_ndbcluster
and
!
$glob_use_running_ndbcluster
)
{
ndbcluster_start
();
# We start the cluster storage engine
}
# mysql_loadstd(); FIXME copying from "std_data" .frm and
# mysql_loadstd(); FIXME copying from "std_data" .frm and
# .MGR but there are none?!
# .MGR but there are none?!
}
}
if
(
$opt_start_and_exit
)
if
(
$opt_start_and_exit
)
{
{
# FIXME what about ndb?
if
(
mysqld_start
('
master
',
0
,
[]
,
[]
)
)
if
(
mysqld_start
('
master
',
0
,
[]
,
[]
)
)
{
{
mtr_report
("
Servers started, exiting
");
mtr_report
("
Servers started, exiting
");
...
@@ -551,6 +551,8 @@ sub command_line_setup () {
...
@@ -551,6 +551,8 @@ sub command_line_setup () {
$master
->
[
0
]
->
{'
path_myport
'}
=
$opt_master_myport
;
$master
->
[
0
]
->
{'
path_myport
'}
=
$opt_master_myport
;
$master
->
[
0
]
->
{'
start_timeout
'}
=
400
;
# enough time create innodb tables
$master
->
[
0
]
->
{'
start_timeout
'}
=
400
;
# enough time create innodb tables
$master
->
[
0
]
->
{'
ndbcluster
'}
=
1
;
# ndbcluster not started
$master
->
[
1
]
->
{'
path_myddir
'}
=
"
$glob_mysql_test_dir
/var/master1-data
";
$master
->
[
1
]
->
{'
path_myddir
'}
=
"
$glob_mysql_test_dir
/var/master1-data
";
$master
->
[
1
]
->
{'
path_myerr
'}
=
"
$glob_mysql_test_dir
/var/log/master1.err
";
$master
->
[
1
]
->
{'
path_myerr
'}
=
"
$glob_mysql_test_dir
/var/log/master1.err
";
$master
->
[
1
]
->
{'
path_mylog
'}
=
"
$glob_mysql_test_dir
/var/log/master1.log
";
$master
->
[
1
]
->
{'
path_mylog
'}
=
"
$glob_mysql_test_dir
/var/log/master1.log
";
...
@@ -681,6 +683,10 @@ sub command_line_setup () {
...
@@ -681,6 +683,10 @@ sub command_line_setup () {
$glob_use_running_ndbcluster
=
1
;
$glob_use_running_ndbcluster
=
1
;
$opt_with_ndbcluster
=
1
;
$opt_with_ndbcluster
=
1
;
}
}
else
{
$opt_ndbconnectstring
=
"
host=localhost:
$opt_ndbcluster_port
";
}
# FIXME
# FIXME
...
@@ -786,6 +792,9 @@ sub executable_setup () {
...
@@ -786,6 +792,9 @@ sub executable_setup () {
$exe_mysql_fix_system_tables
=
"
$glob_basedir
/scripts/mysql_fix_privilege_tables
";
$exe_mysql_fix_system_tables
=
"
$glob_basedir
/scripts/mysql_fix_privilege_tables
";
$path_language
=
"
$glob_basedir
/sql/share/english/
";
$path_language
=
"
$glob_basedir
/sql/share/english/
";
$path_charsetsdir
=
"
$glob_basedir
/sql/share/charsets
";
$path_charsetsdir
=
"
$glob_basedir
/sql/share/charsets
";
$path_ndb_tools_dir
=
"
$glob_basedir
/ndb/tools
";
$exe_ndb_mgm
=
"
$glob_basedir
/ndb/src/mgmclient/ndb_mgm
";
}
}
else
else
{
{
...
@@ -846,6 +855,9 @@ sub executable_setup () {
...
@@ -846,6 +855,9 @@ sub executable_setup () {
$exe_mysqltest
=
"
$path_client_bindir
/mysqltest
";
$exe_mysqltest
=
"
$path_client_bindir
/mysqltest
";
$exe_mysql_client_test
=
"
$path_client_bindir
/mysql_client_test
";
$exe_mysql_client_test
=
"
$path_client_bindir
/mysql_client_test
";
}
}
$path_ndb_tools_dir
=
"
$glob_basedir
/bin
";
$exe_ndb_mgm
=
"
$glob_basedir
/bin/ndb_mgm
";
}
}
# FIXME special $exe_master_mysqld and $exe_slave_mysqld
# FIXME special $exe_master_mysqld and $exe_slave_mysqld
...
@@ -860,6 +872,10 @@ sub executable_setup () {
...
@@ -860,6 +872,10 @@ sub executable_setup () {
{
{
$exe_slave_mysqld
=
$exe_mysqld
;
$exe_slave_mysqld
=
$exe_mysqld
;
}
}
$path_ndb_backup_dir
=
"
$glob_mysql_test_dir
/var/ndbcluster-
$opt_ndbcluster_port
";
$file_ndb_testrun_log
=
"
$glob_mysql_test_dir
/var/log/ndb_testrun.log
";
}
}
...
@@ -949,22 +965,19 @@ sub kill_and_cleanup () {
...
@@ -949,22 +965,19 @@ sub kill_and_cleanup () {
mtr_report
("
Killing Possible Leftover Processes
");
mtr_report
("
Killing Possible Leftover Processes
");
mkpath
("
$glob_mysql_test_dir
/var/log
");
# Needed for mysqladmin log
mkpath
("
$glob_mysql_test_dir
/var/log
");
# Needed for mysqladmin log
mtr_kill_leftovers
();
mtr_kill_leftovers
();
}
if
(
$opt_with_ndbcluster
and
!
$glob_use_running_ndbcluster
)
{
ndbcluster_stop
();
ndbcluster_stop
();
$master
->
[
0
]
->
{'
ndbcluster
'}
=
1
;
}
}
mtr_report
("
Removing Stale Files
");
mtr_report
("
Removing Stale Files
");
rmtree
("
$glob_mysql_test_dir
/var/log
");
rmtree
("
$glob_mysql_test_dir
/var/log
");
rmtree
("
$glob_mysql_test_dir
/var/ndbcluster
");
rmtree
("
$glob_mysql_test_dir
/var/ndbcluster
-
$opt_ndbcluster_port
");
rmtree
("
$glob_mysql_test_dir
/var/run
");
rmtree
("
$glob_mysql_test_dir
/var/run
");
rmtree
("
$glob_mysql_test_dir
/var/tmp
");
rmtree
("
$glob_mysql_test_dir
/var/tmp
");
mkpath
("
$glob_mysql_test_dir
/var/log
");
mkpath
("
$glob_mysql_test_dir
/var/log
");
mkpath
("
$glob_mysql_test_dir
/var/ndbcluster
");
mkpath
("
$glob_mysql_test_dir
/var/run
");
mkpath
("
$glob_mysql_test_dir
/var/run
");
mkpath
("
$glob_mysql_test_dir
/var/tmp
");
mkpath
("
$glob_mysql_test_dir
/var/tmp
");
mkpath
(
$opt_tmpdir
);
mkpath
(
$opt_tmpdir
);
...
@@ -1002,26 +1015,67 @@ sub kill_and_cleanup () {
...
@@ -1002,26 +1015,67 @@ sub kill_and_cleanup () {
# FIXME why is there a different start below?!
# FIXME why is there a different start below?!
sub
ndbcluster_
start
()
{
sub
ndbcluster_
install
()
{
mtr_report
("
Starting ndbcluster
");
if
(
!
$opt_with_ndbcluster
or
$glob_use_running_ndbcluster
)
{
return
0
;
}
mtr_report
("
Install ndbcluster
");
my
$ndbcluster_opts
=
$opt_bench
?
""
:
"
--small
";
my
$ndbcluster_opts
=
$opt_bench
?
""
:
"
--small
";
# FIXME check result code?!
my
$ndbcluster_port_base
=
$opt_ndbcluster_port
+
2
;
mtr_run
("
$glob_mysql_test_dir
/ndb/ndbcluster
",
if
(
mtr_run
("
$glob_mysql_test_dir
/ndb/ndbcluster
",
["
--port-base=
$opt_ndbcluster_port
",
["
--port=
$opt_ndbcluster_port
",
$ndbcluster_opts
,
"
--port-base=
$ndbcluster_port_base
",
"
--diskless
",
"
--data-dir=
$glob_mysql_test_dir
/var
",
"
--initial
",
$ndbcluster_opts
,
"
--data-dir=
$glob_mysql_test_dir
/var
"],
"
--initial
"],
"",
"",
"",
"");
"",
"",
"",
"")
)
{
mtr_error
("
Error ndbcluster_install
");
return
1
;
}
ndbcluster_stop
();
$master
->
[
0
]
->
{'
ndbcluster
'}
=
1
;
return
0
;
}
sub
ndbcluster_start
()
{
if
(
!
$opt_with_ndbcluster
or
$glob_use_running_ndbcluster
)
{
return
0
;
}
# FIXME, we want to _append_ output to file $file_ndb_testrun_log instead of /dev/null
if
(
mtr_run
("
$glob_mysql_test_dir
/ndb/ndbcluster
",
["
--port=
$opt_ndbcluster_port
",
"
--data-dir=
$glob_mysql_test_dir
/var
"],
"",
"
/dev/null
",
"",
"")
)
{
mtr_error
("
Error ndbcluster_install
");
return
1
;
}
return
0
;
}
}
sub
ndbcluster_stop
()
{
sub
ndbcluster_stop
()
{
if
(
!
$opt_with_ndbcluster
or
$glob_use_running_ndbcluster
)
{
return
;
}
my
$ndbcluster_port_base
=
$opt_ndbcluster_port
+
2
;
# FIXME, we want to _append_ output to file $file_ndb_testrun_log instead of /dev/null
mtr_run
("
$glob_mysql_test_dir
/ndb/ndbcluster
",
mtr_run
("
$glob_mysql_test_dir
/ndb/ndbcluster
",
["
--
data-dir=
$glob_mysql_test_dir
/var
",
["
--
port=
$opt_ndbcluster_port
",
"
--
port-base=
$opt_ndbcluster_port
",
"
--
data-dir=
$glob_mysql_test_dir
/var
",
"
--stop
"],
"
--stop
"],
"",
"",
"",
"");
"",
"
/dev/null
",
"",
"");
return
;
}
}
...
@@ -1129,11 +1183,6 @@ sub run_suite () {
...
@@ -1129,11 +1183,6 @@ sub run_suite () {
stop_masters_slaves
();
stop_masters_slaves
();
}
}
if
(
$opt_with_ndbcluster
and
!
$glob_use_running_ndbcluster
)
{
ndbcluster_stop
();
}
if
(
$opt_gcov
)
if
(
$opt_gcov
)
{
{
gcov_collect
();
# collect coverage information
gcov_collect
();
# collect coverage information
...
@@ -1162,6 +1211,13 @@ sub mysql_install_db () {
...
@@ -1162,6 +1211,13 @@ sub mysql_install_db () {
install_db
('
slave
',
$slave
->
[
1
]
->
{'
path_myddir
'});
install_db
('
slave
',
$slave
->
[
1
]
->
{'
path_myddir
'});
install_db
('
slave
',
$slave
->
[
2
]
->
{'
path_myddir
'});
install_db
('
slave
',
$slave
->
[
2
]
->
{'
path_myddir
'});
if
(
ndbcluster_install
()
)
{
# failed to install, disable usage but flag that its no ok
$opt_with_ndbcluster
=
0
;
$flag_ndb_status_ok
=
0
;
}
return
0
;
return
0
;
}
}
...
@@ -1224,6 +1280,9 @@ sub run_testcase ($) {
...
@@ -1224,6 +1280,9 @@ sub run_testcase ($) {
mtr_tonewfile
(
$opt_current_test
,"
$tname
\n
");
# Always tell where we are
mtr_tonewfile
(
$opt_current_test
,"
$tname
\n
");
# Always tell where we are
# output current test to ndbcluster log file to enable diagnostics
mtr_tofile
(
$file_ndb_testrun_log
,"
CURRENT TEST
$tname
\n
");
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# If marked to skip, just print out and return.
# If marked to skip, just print out and return.
# Note that a test case not marked as 'skip' can still be
# Note that a test case not marked as 'skip' can still be
...
@@ -1297,6 +1356,15 @@ sub run_testcase ($) {
...
@@ -1297,6 +1356,15 @@ sub run_testcase ($) {
if
(
!
$opt_local_master
)
if
(
!
$opt_local_master
)
{
{
if
(
$master
->
[
0
]
->
{'
ndbcluster
'}
)
{
$master
->
[
0
]
->
{'
ndbcluster
'}
=
ndbcluster_start
();
if
(
$master
->
[
0
]
->
{'
ndbcluster
'}
)
{
report_failure_and_restart
(
$tinfo
);
return
;
}
}
if
(
!
$master
->
[
0
]
->
{'
pid
'}
)
if
(
!
$master
->
[
0
]
->
{'
pid
'}
)
{
{
$master
->
[
0
]
->
{'
pid
'}
=
$master
->
[
0
]
->
{'
pid
'}
=
...
@@ -1614,17 +1682,8 @@ sub mysqld_arguments ($$$$$) {
...
@@ -1614,17 +1682,8 @@ sub mysqld_arguments ($$$$$) {
if
(
$opt_with_ndbcluster
)
if
(
$opt_with_ndbcluster
)
{
{
mtr_add_arg
(
$args
,
"
%s--ndbcluster
",
$prefix
);
mtr_add_arg
(
$args
,
"
%s--ndbcluster
",
$prefix
);
mtr_add_arg
(
$args
,
"
%s--ndb-connectstring=%s
",
$prefix
,
if
(
$glob_use_running_ndbcluster
)
$opt_ndbconnectstring
);
{
mtr_add_arg
(
$args
,"
--ndb-connectstring=%s
",
$prefix
,
$opt_ndbconnectstring
);
}
else
{
mtr_add_arg
(
$args
,"
--ndb-connectstring=host=localhost:%d
",
$prefix
,
$opt_ndbcluster_port
);
}
}
}
# FIXME always set nowdays??? SMALL_SERVER
# FIXME always set nowdays??? SMALL_SERVER
...
@@ -1828,6 +1887,12 @@ sub stop_masters () {
...
@@ -1828,6 +1887,12 @@ sub stop_masters () {
}
}
}
}
if
(
!
$master
->
[
0
]
->
{'
ndbcluster
'}
)
{
ndbcluster_stop
();
$master
->
[
0
]
->
{'
ndbcluster
'}
=
1
;
}
mtr_stop_mysqld_servers
(
\
@args
);
mtr_stop_mysqld_servers
(
\
@args
);
}
}
...
@@ -1903,6 +1968,13 @@ sub run_mysqltest ($$) {
...
@@ -1903,6 +1968,13 @@ sub run_mysqltest ($$) {
$ENV
{'
MYSQL_CLIENT_TEST
'}
=
$cmdline_mysql_client_test
;
$ENV
{'
MYSQL_CLIENT_TEST
'}
=
$cmdline_mysql_client_test
;
$ENV
{'
CHARSETSDIR
'}
=
$path_charsetsdir
;
$ENV
{'
CHARSETSDIR
'}
=
$path_charsetsdir
;
$ENV
{'
NDB_STATUS_OK
'}
=
$flag_ndb_status_ok
;
$ENV
{'
NDB_MGM
'}
=
$exe_ndb_mgm
;
$ENV
{'
NDB_BACKUP_DIR
'}
=
$path_ndb_backup_dir
;
$ENV
{'
NDB_TOOLS_DIR
'}
=
$path_ndb_tools_dir
;
$ENV
{'
NDB_TOOLS_OUTPUT
'}
=
$file_ndb_testrun_log
;
$ENV
{'
NDB_CONNECTSTRING
'}
=
$opt_ndbconnectstring
;
my
$exe
=
$exe_mysqltest
;
my
$exe
=
$exe_mysqltest
;
my
$args
;
my
$args
;
...
...
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