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
3a3690a9
Commit
3a3690a9
authored
May 18, 2006
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start servers in parallel
Add list of clusters and nodes
parent
06138897
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
980 additions
and
711 deletions
+980
-711
mysql-test/lib/mtr_process.pl
mysql-test/lib/mtr_process.pl
+208
-145
mysql-test/lib/mtr_report.pl
mysql-test/lib/mtr_report.pl
+8
-1
mysql-test/lib/mtr_stress.pl
mysql-test/lib/mtr_stress.pl
+1
-2
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+763
-563
No files found.
mysql-test/lib/mtr_process.pl
View file @
3a3690a9
This diff is collapsed.
Click to expand it.
mysql-test/lib/mtr_report.pl
View file @
3a3690a9
...
...
@@ -122,7 +122,7 @@ sub mtr_report_test_failed ($) {
{
print
"
[ fail ] timeout
\n
";
}
elsif
(
$tinfo
->
{'
ndb_test
'}
and
!
$::flag_ndb_status_ok
)
elsif
(
$tinfo
->
{'
ndb_test
'}
and
$::cluster
->
[
0
]
->
{'
installed_ok
'}
eq
"
NO
"
)
{
print
"
[ fail ] ndbcluster start failure
\n
";
return
;
...
...
@@ -157,6 +157,7 @@ sub mtr_report_stats ($) {
my
$tot_passed
=
0
;
my
$tot_failed
=
0
;
my
$tot_tests
=
0
;
my
$tot_restarts
=
0
;
my
$found_problems
=
0
;
# Some warnings are errors...
foreach
my
$tinfo
(
@$tests
)
...
...
@@ -175,6 +176,10 @@ sub mtr_report_stats ($) {
$tot_tests
++
;
$tot_failed
++
;
}
if
(
$tinfo
->
{'
restarted
'}
)
{
$tot_restarts
++
;
}
}
# ----------------------------------------------------------------------
...
...
@@ -197,6 +202,8 @@ sub mtr_report_stats ($) {
"
the documentation at
\n
",
"
http://www.mysql.com/doc/en/MySQL_test_suite.html
\n
";
}
print
"
The servers was restarted
$tot_restarts
times
\n
";
# ----------------------------------------------------------------------
# If a debug run, there might be interesting information inside
...
...
mysql-test/lib/mtr_stress.pl
View file @
3a3690a9
...
...
@@ -27,8 +27,7 @@ sub run_stress_test ()
if
(
!
$::glob_use_embedded_server
and
!
$::opt_local_master
)
{
$::master
->
[
0
]
->
{'
pid
'}
=
mysqld_start
('
master
',
0
,
[]
,
[]
,
0
);
if
(
!
$::master
->
[
0
]
->
{'
pid
'}
)
if
(
!
mysqld_start
(
$::master
->
[
0
],
[]
,
[]
)
)
{
mtr_error
("
Can't start the mysqld server
");
}
...
...
mysql-test/mysql-test-run.pl
View file @
3a3690a9
This diff is collapsed.
Click to expand it.
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