diff options
author | Steven Rostedt <srostedt@redhat.com> | 2011-03-07 13:18:47 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-03-08 09:52:58 -0500 |
commit | f80802cb1fbd7f441dd1d04db77d314adb7ccb37 (patch) | |
tree | fea4c68698a178961c622d8ee740318af02fe7a3 /tools/testing | |
parent | a5abba989deceb731047425812d268daf7536575 (diff) | |
download | linux-3.10-f80802cb1fbd7f441dd1d04db77d314adb7ccb37.tar.gz linux-3.10-f80802cb1fbd7f441dd1d04db77d314adb7ccb37.tar.bz2 linux-3.10-f80802cb1fbd7f441dd1d04db77d314adb7ccb37.zip |
ktest: Print logfile name on failure
If the test fails and a logfile was specified. Print the name to
let the user know where to look for more information on the
failure.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'tools/testing')
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index e1c62eeb88f..3e3615a7d96 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -462,6 +462,10 @@ sub dodie { `$power_off`; } + if (defined($opt{"LOG_FILE"})) { + print " See $opt{LOG_FILE} for more info.\n"; + } + die @_, "\n"; } |