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
e848c7c2
Commit
e848c7c2
authored
Apr 26, 2006
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-5.0-18617
into mysql.com:/home/jimw/my/mysql-5.0-clean
parents
74ca82c8
57980ef4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
24 deletions
+11
-24
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+11
-24
No files found.
mysql-test/mysql-test-run.pl
View file @
e848c7c2
...
...
@@ -391,22 +391,7 @@ sub main () {
gprof_prepare
();
}
if
(
$opt_start_dirty
)
{
if
(
ndbcluster_start
(
$opt_with_ndbcluster
)
)
{
mtr_error
("
Can't start ndbcluster
");
}
if
(
mysqld_start
('
master
',
0
,
[]
,
[]
,
$using_ndbcluster_master
)
)
{
mtr_report
("
Servers started, exiting
");
}
else
{
mtr_error
("
Can't start the mysqld server
");
}
}
elsif
(
$opt_bench
)
if
(
$opt_bench
)
{
initialize_servers
();
run_benchmarks
(
shift
);
# Shift what? Extra arguments?!
...
...
@@ -2059,10 +2044,11 @@ sub run_testcase ($) {
}
# ----------------------------------------------------------------------
# If --start-and-exit given, stop here to let user manually run tests
# If --start-and-exit or --start-dirty given, stop here to let user manually
# run tests
# ----------------------------------------------------------------------
if
(
$opt_start_and_exit
)
if
(
$opt_start_and_exit
or
$opt_start_dirty
)
{
mtr_report
("
\n
Servers started, exiting
");
exit
(
0
);
...
...
@@ -3441,11 +3427,12 @@ Misc options
comment=STR Write STR to the output
script-debug Debug this script itself
timer Show test case execution time
start-and-exit Only initiate and start the "mysqld" servers, use the startup
settings for the specified test case if any
start-dirty Only start the "mysqld" servers without initiation
fast Don't try to cleanup from earlier runs
reorder Reorder tests to get less server restarts
start-and-exit Only initialize and start the servers, using the
startup settings for the specified test case (if any)
start-dirty Only start the servers (without initialization) for
the specified test case (if any)
fast Don't try to clean up from earlier runs
reorder Reorder tests to get fewer server restarts
help Get this help text
unified-diff | udiff When presenting differences, use unified diff
...
...
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