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
1b698f03
Commit
1b698f03
authored
Mar 01, 2006
by
joerg@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/M41/comment-4.1
parents
7f7f5969
38a7f555
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+11
-0
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+7
-0
No files found.
mysql-test/mysql-test-run.pl
View file @
1b698f03
...
...
@@ -184,6 +184,7 @@ our $opt_big_test= 0; # Send --big-test to mysqltest
our
@opt_extra_mysqld_opt
;
our
$opt_comment
;
our
$opt_compress
;
our
$opt_current_test
;
our
$opt_ddd
;
...
...
@@ -536,6 +537,7 @@ sub command_line_setup () {
# Misc
'
big-test
'
=>
\
$opt_big_test
,
'
comment=s
'
=>
\
$opt_comment
,
'
compress
'
=>
\
$opt_compress
,
'
debug
'
=>
\
$opt_debug
,
'
fast
'
=>
\
$opt_fast
,
...
...
@@ -571,6 +573,14 @@ sub command_line_setup () {
usage
("");
}
if
(
$opt_comment
)
{
print
"
\n
";
print
'
#
'
x
78
,
"
\n
";
print
"
#
$opt_comment
\n
";
print
'
#
'
x
78
,
"
\n\n
";
}
foreach
my
$arg
(
@ARGV
)
{
if
(
$arg
=~
/^--skip-/
)
...
...
@@ -2398,6 +2408,7 @@ Misc options
verbose Verbose output from this script
script-debug Debug this script itself
comment=STR Write STR to the output
compress Use the compressed protocol between client and server
timer Show test case execution time
start-and-exit Only initiate and start the "mysqld" servers, use the startup
...
...
mysql-test/mysql-test-run.sh
View file @
1b698f03
...
...
@@ -476,6 +476,13 @@ while test $# -gt 0; do
--fast
)
FAST_START
=
1
;;
--comment
=
*
)
TMP
=
`
$ECHO
"
$1
"
|
$SED
-e
"s;--comment=;;"
`
echo
echo
'############################################'
echo
"#
$TMP
"
echo
'############################################'
;;
--
)
shift
;
break
;;
--
*
)
$ECHO
"Unrecognized option:
$1
"
;
exit
1
;;
*
)
break
;;
...
...
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