提交 9900b5dc 编写于 作者: S Steven Rostedt 提交者: Steven Rostedt

ktest: Add DEFINED keyword for IF statements

Have IF statements process if a config variable or option has been
defined or not. Can use NOT DEFINED in the case for telling if
a variable or option has not been defined.

DEFAULTS IF NOT DEFINED SSH_USER
SSH_USER = root
Signed-off-by: NSteven Rostedt <rostedt@goodmis.org>
上级 3d1cc414
...@@ -396,6 +396,13 @@ sub process_compare { ...@@ -396,6 +396,13 @@ sub process_compare {
return $ret; return $ret;
} }
sub value_defined {
my ($val) = @_;
return defined($variable{$2}) ||
defined($opt{$2});
}
sub process_if { sub process_if {
my ($name, $value) = @_; my ($name, $value) = @_;
...@@ -409,13 +416,21 @@ sub process_if { ...@@ -409,13 +416,21 @@ sub process_if {
return $ret; return $ret;
} }
if ($val =~ /^\s*(NOT\s*)?DEFINED\s+(\S+)\s*$/) {
if (defined $1) {
return !value_defined($2);
} else {
return value_defined($2);
}
}
if ($val =~ /^\s*0\s*$/) { if ($val =~ /^\s*0\s*$/) {
return 0; return 0;
} elsif ($val =~ /^\s*\d+\s*$/) { } elsif ($val =~ /^\s*\d+\s*$/) {
return 1; return 1;
} }
die ("$name: $.: Undefined variable $val in if statement\n"); die ("$name: $.: Undefined content $val in if statement\n");
return 1; return 1;
} }
......
...@@ -137,6 +137,23 @@ ...@@ -137,6 +137,23 @@
# ELSE # ELSE
# BUILD_TYPE = useconfig:${CONFIG_DIR}/config-64 # BUILD_TYPE = useconfig:${CONFIG_DIR}/config-64
# #
# The DEFINED keyword can be used by the IF statements too.
# It returns true if the given config variable or option has been defined
# or false otherwise.
#
#
# DEFAULTS IF DEFINED USE_CC
# CC := ${USE_CC}
# ELSE
# CC := gcc
#
#
# As well as NOT DEFINED.
#
# DEFAULTS IF NOT DEFINED MAKE_CMD
# MAKE_CMD := make ARCH=x86
#
#
# #
# INCLUDE file # INCLUDE file
# #
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册