ktest: Fix check for new kernel success on rebooting to good kernel
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Tue, 7 Oct 2014 20:31:07 +0000 (16:31 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 7 Oct 2014 20:31:07 +0000 (16:31 -0400)
The reboot function when rebooting back to a good kernel has a check
to make sure that a new kernel was indeed booted. But that check
uses a timeout value, which when calling the monitor will still
return success if the timeout is hit (no bug was found). It should
return an error to let the reboot code know that a new kernel was
not reached. Only the reboot code checks the return value of the
monitor.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
tools/testing/ktest/ktest.pl

index 085452f..c518b0f 100755 (executable)
@@ -1450,6 +1450,12 @@ sub wait_for_monitor {
        }
     }
     print "** Monitor flushed **\n";
+
+    # if stop is defined but wasn't hit, return error
+    # used by reboot (which wants to see a reboot)
+    if (defined($stop) && !$booted) {
+       $bug = 1;
+    }
     return $bug;
 }