text stringlengths 0 834k |
|---|
next; |
} |
if ($arg =~ /^--http-include=(.*)/) { |
push @http_includes, $1; |
next; |
} |
if ($arg eq '--http-include') { |
my $v = shift @args; |
if (!defined $v) { |
die ""option --http-include takes an argument but "", |
""found none.\n""; |
} |
push @http_includes, $v; |
next; |
} |
if ($arg =~ /^--main-include=(.*)/) { |
push @main_includes, $1; |
next; |
} |
if ($arg eq '--main-include') { |
my $v = shift @args; |
if (!defined $v) { |
die ""option --main-include takes an argument but "", |
""found none.\n""; |
} |
push @main_includes, $v; |
next; |
} |
if ($arg =~ /^--valgrind-opts=(.*)/) { |
if (defined $valgrind_opts) { |
die ""ERROR: duplicate --valgrind-opts options\n""; |
} |
$valgrind_opts = $1; |
$use_valgrind = 1; |
next; |
} |
if ($arg eq '--valgrind-opts') { |
if (defined $valgrind_opts) { |
die ""ERROR: duplicate --valgrind-opts options\n""; |
} |
$valgrind_opts = shift @args; |
if (!defined $valgrind_opts) { |
die ""option --valgrind-opts takes an argument but "", |
""found none.\n""; |
} |
$use_valgrind = 1; |
next; |
} |
if ($arg =~ /^--errlog-level=(.*)/) { |
$errlog_level = $1; |
next; |
} |
if ($arg eq '--errlog-level') { |
$errlog_level = shift @args; |
if (!defined $errlog_level) { |
die ""option --errlog-level takes an argument but "", |
""found none.\n""; |
} |
next; |
} |
if ($arg eq '--resolve-ipv6') { |
$resolve_ipv6 = 1; |
next; |
} |
if ($arg =~ /^--user-runner=(.*)/) { |
if (defined $user_runner) { |
die ""ERROR: duplicate --odb options\n""; |
} |
$user_runner = $1; |
next; |
} |
if ($arg eq '--user-runner') { |
if (defined $user_runner) { |
die ""ERROR: duplicate --user-runner options\n""; |
} |
$user_runner = shift @args; |
if (!defined $user_runner) { |
die ""option --user-runner takes an argument but "", |
""found none.\n""; |
} |
next; |
} |
if ($arg eq '--stap') { |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.