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
d4ea29e7
Commit
d4ea29e7
authored
Mar 01, 2006
by
joerg@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/M50/comment-5.0 into mysql.com:/M51/comment-5.1
parents
5d895630
30e00b0f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+10
-0
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+8
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
d4ea29e7
...
...
@@ -198,6 +198,7 @@ our $opt_big_test= 0; # Send --big-test to mysqltest
our
@opt_extra_mysqld_opt
;
our
$opt_comment
;
our
$opt_compress
;
our
$opt_ssl
;
our
$opt_skip_ssl
;
...
...
@@ -669,6 +670,14 @@ sub command_line_setup () {
print
'
#
'
x
78
,
"
\n\n
";
}
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-/
)
...
...
@@ -3256,6 +3265,7 @@ Options for coverage, profiling etc
Misc options
comment=STR Write STR to the output
verbose Verbose output from this script
script-debug Debug this script itself
timer Show test case execution time
...
...
mysql-test/mysql-test-run.sh
View file @
d4ea29e7
...
...
@@ -601,7 +601,14 @@ while test $# -gt 0; do
FAST_START
=
1
;;
--use-old-data
)
USE_OLD_DATA
=
1
;
USE_OLD_DATA
=
1
;;
--comment
=
*
)
TMP
=
`
$ECHO
"
$1
"
|
$SED
-e
"s;--comment=;;"
`
echo
echo
'############################################'
echo
"#
$TMP
"
echo
'############################################'
;;
--
)
shift
;
break
;;
--
*
)
$ECHO
"Unrecognized option:
$1
"
;
exit
1
;;
...
...
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