diff options
author | Steven Rostedt <srostedt@redhat.com> | 2011-03-07 21:21:00 +0300 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2011-03-08 17:52:58 +0300 |
commit | 10abf118f090b9a70ea05296a981fa27196dc7c6 (patch) | |
tree | 6bcc35f3f41aeaf616a20c459081fed5ac21440c /tools/testing/ktest | |
parent | f80802cb1fbd7f441dd1d04db77d314adb7ccb37 (diff) | |
download | linux-10abf118f090b9a70ea05296a981fa27196dc7c6.tar.xz |
ktest: Start failure timeout on panic too
Currently we just look for a Call Trace to start the time out
when to reboot the box. But if the kernel panics and does not
show a Call Trace, the test will not reboot the box after
the specified timeout.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'tools/testing/ktest')
-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 3e3615a7d968..6620fe4b364f 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -820,6 +820,7 @@ sub monitor { } if ($full_line =~ /Kernel panic -/) { + $failure_start = time; $bug = 1; } |