Commit f991b573 authored by ingo@chilla.local's avatar ingo@chilla.local

Merge mysql.com:/home/mydev/mysql-5.1--main

into  mysql.com:/home/mydev/mysql-5.1-amerge
parents 0ae24af5 7987ef89
...@@ -694,6 +694,12 @@ sub command_line_setup () { ...@@ -694,6 +694,12 @@ sub command_line_setup () {
{ {
push(@opt_extra_mysqld_opt, $arg); push(@opt_extra_mysqld_opt, $arg);
} }
elsif ( $arg =~ /^--$/ )
{
# It is an effect of setting 'pass_through' in option processing
# that the lone '--' separating options from arguments survives,
# simply ignore it.
}
elsif ( $arg =~ /^-/ ) elsif ( $arg =~ /^-/ )
{ {
usage("Invalid option \"$arg\""); usage("Invalid option \"$arg\"");
...@@ -3713,6 +3719,13 @@ sub valgrind_arguments { ...@@ -3713,6 +3719,13 @@ sub valgrind_arguments {
############################################################################## ##############################################################################
sub usage ($) { sub usage ($) {
my $message= shift;
if ( $message )
{
print STDERR "$message \n";
}
print STDERR <<HERE; print STDERR <<HERE;
mysql-test-run [ OPTIONS ] [ TESTCASE ] mysql-test-run [ OPTIONS ] [ TESTCASE ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment