aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuss Dill <Russ.Dill@ti.com>2012-04-23 19:43:00 -0700
committerSteven Rostedt <rostedt@goodmis.org>2012-04-24 16:59:47 -0400
commit2bc90df49d62e213acaaea84b45abd9d6ceaa4c1 (patch)
tree8fbf9f20e08c536fbf314f55f00fe4903d048a39
parent574860b23399943303b471d960df2c3ede4e5e2a (diff)
downloadlinux-ktest-ktest-urgent.tar.gz
ktest.pl: Fix combined usage of BISECT_REVERSE and BISECT_SKIPktest-v3.4-rc4ktest-urgent
When BISECT_REVERSE and BISECT_SKIP are used together with boot or test testing, build failures are treated as boot or test failures and 'git bisect bad' is executed instead of 'git bisect skip'. This is because the $ret value of -1 is treated as a build failure, but the $reverse_bisect logic does not properly handle this. Simple fix, only invert it if it is positive. Link: http://lkml.kernel.org/r/1335235380-8509-1-git-send-email-Russ.Dill@ti.com Signed-off-by: Russ Dill <Russ.Dill@ti.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rwxr-xr-xtools/testing/ktest/ktest.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
index 95d6a6f7c33aa7..d2ede59b9a3c83 100755
--- a/tools/testing/ktest/ktest.pl
+++ b/tools/testing/ktest/ktest.pl
@@ -2192,7 +2192,7 @@ sub run_bisect {
}
# Are we looking for where it worked, not failed?
- if ($reverse_bisect) {
+ if ($reverse_bisect && $ret >= 0) {
$ret = !$ret;
}