ktest.pl: Add a NOT operator
authorSteven Rostedt (VMware) <rostedt@goodmis.org>
Wed, 1 Jul 2020 15:09:23 +0000 (11:09 -0400)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Wed, 1 Jul 2020 15:09:23 +0000 (11:09 -0400)
There is a NOT DEFINED operator, but there is not an operator that can
negate any other expression.

 For example: NOT (${FOO} == boot || ${BAR} == run)

Add the keyword NOT to allow the ktest.pl config files to negate operators.

Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
tools/testing/ktest/ktest.pl

index f99cf633ed84f559b9be943c702274a2d56ddb8e..0d04b8a2b5a2c2fb6428ee0567848f72b4f31955 100755 (executable)
@@ -911,6 +911,12 @@ sub process_expression {
        }
     }
 
+    if ($val =~ s/^\s*NOT\s+(.*)//) {
+       my $express = $1;
+       my $ret = process_expression($name, $express);
+       return !$ret;
+    }
+
     if ($val =~ /^\s*0\s*$/) {
        return 0;
     } elsif ($val =~ /^\s*\d+\s*$/) {