提交 4da46da2 编写于 作者: S Steven Rostedt 提交者: Steven Rostedt

ktest: Fix result of rebooting the kernel

The command that is called that reboots the kernel may fail
but the return code is not passed back to the ktest.pl script.
This is because a ';' is used between the two commands and
if the second command fails, only the first command's return
code is returned. Using a '&&' between the two commands fixes
this.
Signed-off-by: NSteven Rostedt <rostedt@goodmis.org>
上级 4c8cc55b
...@@ -788,7 +788,7 @@ sub wait_for_input ...@@ -788,7 +788,7 @@ sub wait_for_input
sub reboot_to { sub reboot_to {
if ($reboot_type eq "grub") { if ($reboot_type eq "grub") {
run_ssh "'(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'"; run_ssh "'(echo \"savedefault --default=$grub_number --once\" | grub --batch && reboot)'";
return; return;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册