We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bcdb6e commit acd98e2Copy full SHA for acd98e2
tools/testing/ktest/ktest.pl
@@ -4297,6 +4297,15 @@ sub die_usage {
4297
$command_vars[$#command_vars + 1] = $val;
4298
}
4299
4300
+ } elsif ( $ARGV[0] =~ m/^-D(.*)/) {
4301
+ my $val = $1;
4302
+ shift;
4303
+
4304
+ if ($val =~ m/(.*?):=(.*)$/) {
4305
+ set_variable($1, $2, 1);
4306
+ } else {
4307
+ $command_vars[$#command_vars + 1] = $val;
4308
+ }
4309
} elsif ( $ARGV[0] eq "-h" ) {
4310
die_usage;
4311
} else {
0 commit comments