diff options
author | Steven Rostedt <srostedt@redhat.com> | 2011-10-22 09:07:03 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-10-22 09:07:03 -0400 |
commit | 7bf5107347d94bb056c5a0cf78f09e499c3d8f48 (patch) | |
tree | 90779830a8515abed065f0a0ce53605854f7f791 /tools | |
parent | 9f7424cc86adf55c3fccaa1160b6cf5c6cfc4c02 (diff) | |
download | linux-7bf5107347d94bb056c5a0cf78f09e499c3d8f48.tar.bz2 |
ktest: Add variable ${PWD}
Adding the variable ${PWD} that equals `pwd` makes the config files
much simpler.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 652446dd9e79..9d9ee321a3dc 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -136,6 +136,9 @@ my %force_config; # do not force reboots on config problems my $no_reboot = 1; +# default variables that can be used +chomp ($variable{"PWD"} = `pwd`); + $config_help{"MACHINE"} = << "EOF" The machine hostname that you will test. EOF |