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
fdeceae8
Commit
fdeceae8
authored
Sep 28, 2005
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql-test-run.pl:
Pass on all --skip-* to mysqld
parent
972d85af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+16
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
fdeceae8
...
...
@@ -467,6 +467,7 @@ sub command_line_setup () {
# Read the command line
# Note: Keep list, and the order, in sync with usage at end of this file
Getopt::Long::
Configure
("
pass_through
");
GetOptions
(
# Control what engine/variation to run
'
embedded-server
'
=>
\
$opt_embedded_server
,
...
...
@@ -554,7 +555,21 @@ sub command_line_setup () {
usage
("");
}
@opt_cases
=
@ARGV
;
foreach
my
$arg
(
@ARGV
)
{
if
(
$arg
=~
/^--skip-/
)
{
push
(
@opt_extra_mysqld_opt
,
$arg
);
}
elsif
(
$arg
=~
/^-/
)
{
usage
("
Invalid option
\"
$arg
\"
");
}
else
{
push
(
@opt_cases
,
$arg
);
}
}
# --------------------------------------------------------------------------
# Set the "var/" directory, as it is the base for everything else
...
...
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