ktest.pl: Add shell commands to variables
authorSteven Rostedt (Google) <rostedt@goodmis.org>
Thu, 8 Dec 2022 02:29:44 +0000 (21:29 -0500)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Fri, 9 Dec 2022 04:23:05 +0000 (23:23 -0500)
Allow variables to execute shell commands. Note, these are processed when
they are first seen while parsing the config file. This is useful if you
have the same config file used for multiple hosts (as they may be in a git
repository).

 HOSTNAME := ${shell hostname}
 DEFAULTS IF "${HOSTNAME}" == "frodo"

Link: https://lkml.kernel.org/r/20221207212944.277ee850@gandalf.local.home
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
tools/testing/ktest/ktest.pl
tools/testing/ktest/sample.conf

index 1737c59..ac59999 100755 (executable)
@@ -802,7 +802,14 @@ sub process_variables {
        my $end = $3;
        # append beginning of value to retval
        $retval = "$retval$begin";
-       if (defined($variable{$var})) {
+       if ($var =~ s/^shell\s+//) {
+           $retval = `$var`;
+           if ($?) {
+               doprint "WARNING: $var returned an error\n";
+           } else {
+               chomp $retval;
+           }
+       } elsif (defined($variable{$var})) {
            $retval = "$retval$variable{$var}";
        } elsif (defined($remove_undef) && $remove_undef) {
            # for if statements, any variable that is not defined,
index 5e7d1d7..2d0fe15 100644 (file)
 # If PATH is not a config variable, then the ${PATH} in
 # the MAKE_CMD option will be evaluated by the shell when
 # the MAKE_CMD option is passed into shell processing.
+#
+# Shell commands can also be inserted with the ${shell <command>}
+# expression. Note, this is case sensitive, thus ${SHELL <command>}
+# will not work.
+#
+# HOSTNAME := ${shell hostname}
+# DEFAULTS IF "${HOSTNAME}" == "frodo"
+#
 
 #### Using options in other options ####
 #