diff options
author | Steven Rostedt <srostedt@redhat.com> | 2011-05-20 09:14:35 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-05-20 09:14:35 -0400 |
commit | 4d62bf51ac3408de85ebc1b677058482069b2e1c (patch) | |
tree | b83c5694510dbe7a1a59ec0f9ba5b9e759a5fbf1 | |
parent | ca6a21f874301d0eb133819a60731c0f39967311 (diff) |
ktest: If test failed due to timeout, print that
If the test failed due to timeout for boot, print a message saying
so. Otherwise the user will be confused to why their test just failed.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 7301d0328858..0603e64fea30 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl | |||
@@ -838,6 +838,7 @@ sub monitor { | |||
838 | 838 | ||
839 | if ($stop_test_after > 0 && !$booted && !$bug) { | 839 | if ($stop_test_after > 0 && !$booted && !$bug) { |
840 | if (time - $monitor_start > $stop_test_after) { | 840 | if (time - $monitor_start > $stop_test_after) { |
841 | doprint "STOP_TEST_AFTER ($stop_test_after seconds) timed out\n"; | ||
841 | $done = 1; | 842 | $done = 1; |
842 | } | 843 | } |
843 | } | 844 | } |