mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-08 23:49:14 +08:00
ktest.pl: Have -D option work without a space
Allow -DBUILD_TYPE=boot work the same as -D BUILD_TYPE=boot just like normal single character option does in most applications. Cc: "John Warthog9 Hawley" <warthog9@kernel.org> Cc: Dhaval Giani <dhaval.giani@gmail.com> Cc: Greg KH <gregkh@linuxfoundation.org> Link: https://lore.kernel.org/20250718202053.567246162@kernel.org Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
@@ -4297,6 +4297,15 @@ while ( $#ARGV >= 0 ) {
|
||||
$command_vars[$#command_vars + 1] = $val;
|
||||
}
|
||||
|
||||
} elsif ( $ARGV[0] =~ m/^-D(.*)/) {
|
||||
my $val = $1;
|
||||
shift;
|
||||
|
||||
if ($val =~ m/(.*?):=(.*)$/) {
|
||||
set_variable($1, $2, 1);
|
||||
} else {
|
||||
$command_vars[$#command_vars + 1] = $val;
|
||||
}
|
||||
} elsif ( $ARGV[0] eq "-h" ) {
|
||||
die_usage;
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user