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
be0368c2
Commit
be0368c2
authored
Dec 20, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add possibility to activate --mark-progress of mysqltest
parent
8bc9d6dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+7
-0
No files found.
mysql-test/mysql-test-run.pl
View file @
be0368c2
...
...
@@ -222,6 +222,7 @@ our $opt_ndbconnectstring_slave;
our
$opt_record
;
our
$opt_report_features
;
our
$opt_check_testcases
;
our
$opt_mark_progress
;
our
$opt_skip
;
our
$opt_skip_rpl
;
...
...
@@ -555,6 +556,7 @@ sub command_line_setup () {
# Test case authoring
'
record
'
=>
\
$opt_record
,
'
check-testcases
'
=>
\
$opt_check_testcases
,
'
mark-progress
'
=>
\
$opt_mark_progress
,
# Extra options used when starting mysqld
'
mysqld=s
'
=>
\
@opt_extra_mysqld_opt
,
...
...
@@ -4375,6 +4377,10 @@ sub run_mysqltest ($) {
mtr_add_arg
(
$args
,
"
--tmpdir=%s
",
$opt_tmpdir
);
mtr_add_arg
(
$args
,
"
--character-sets-dir=%s
",
$path_charsetsdir
);
# Log line number and time for each line in .test file
mtr_add_arg
(
$args
,
"
--mark-progress
")
if
$opt_mark_progress
;
if
(
$tinfo
->
{'
component_id
'}
eq
'
im
')
{
mtr_add_arg
(
$args
,
"
--socket=%s
",
$instance_manager
->
{'
path_sock
'});
...
...
@@ -4828,6 +4834,7 @@ Options for test case authoring
record TESTNAME (Re)genereate the result file for TESTNAME
check-testcases Check testcases for sideeffects
mark-progress Log line number and elapsed time to <testname>.progress
Options that pass on options
...
...
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