1. 02 6月, 2011 2 次提交
    • S
      ktest: Fix result of rebooting the kernel · 4da46da2
      Steven Rostedt 提交于
      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>
      4da46da2
    • S
      ktest: Fix off-by-one in config bisect result · 4c8cc55b
      Steven Rostedt 提交于
      Because in perl the array size returned by $#arr, is the last
      index and not the actually size of the array, we end the config
      bisect early, thinking there is only one config left when there
      are in fact two. Thus the result has a 50% chance of picking
      the correct config that caused the problem.
      Signed-off-by: NSteven Rostedt <rostedt@goodmis.org>
      4c8cc55b
  2. 30 5月, 2011 38 次提交