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
bfdb5e58
Commit
bfdb5e58
authored
Feb 17, 2006
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql-test-run.pl:
Added --comment=<string> option
parent
0611ea32
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+16
-8
No files found.
mysql-test/mysql-test-run.pl
View file @
bfdb5e58
...
...
@@ -508,6 +508,8 @@ sub command_line_setup () {
# These are defaults for things that are set on the command line
$opt_suite
=
"
main
";
# Special default suite
my
$opt_comment
;
my
$opt_master_myport
=
9306
;
my
$opt_slave_myport
=
9308
;
$opt_ndbcluster_port
=
9350
;
...
...
@@ -626,6 +628,7 @@ sub command_line_setup () {
'
big-test
'
=>
\
$opt_big_test
,
'
debug
'
=>
\
$opt_debug
,
'
fast
'
=>
\
$opt_fast
,
'
comment=s
'
=>
\
$opt_comment
,
'
local
'
=>
\
$opt_local
,
'
local-master
'
=>
\
$opt_local_master
,
'
netware
'
=>
\
$opt_netware
,
...
...
@@ -652,9 +655,14 @@ sub command_line_setup () {
'
help|h
'
=>
\
$opt_usage
,
)
or
usage
("
Can't read options
");
if
(
$opt_usage
)
usage
("")
if
$opt_usage
;
if
(
$opt_comment
)
{
usage
("");
print
"
\n
";
print
'
#
'
x
78
,
"
\n
";
print
"
#
$opt_comment
\n
";
print
'
#
'
x
78
,
"
\n\n
";
}
foreach
my
$arg
(
@ARGV
)
...
...
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