diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2014-04-23 22:27:27 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2014-04-23 23:18:26 -0400 |
commit | 4cc559bd1d6a24aa0581f64d8cdb0cb54e7d5f8c (patch) | |
tree | f48c3df4a9790ab70ae6d6ef403c5d905343f5ec /tools/testing/ktest | |
parent | 4186cb45183fc84331aec7413053dc7dcac386d1 (diff) | |
download | op-kernel-dev-4cc559bd1d6a24aa0581f64d8cdb0cb54e7d5f8c.zip op-kernel-dev-4cc559bd1d6a24aa0581f64d8cdb0cb54e7d5f8c.tar.gz |
ktest: Add the config bisect manual back
After the rewrite of the config bisect, the bisect manual was
removed. Add it back.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'tools/testing/ktest')
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 8805668..55ab700 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -2923,7 +2923,13 @@ sub compare_configs { sub run_config_bisect_test { my ($type) = @_; - return run_bisect_test $type, "oldconfig"; + my $ret = run_bisect_test $type, "oldconfig"; + + if ($bisect_manual) { + $ret = answer_bisect; + } + + return $ret; } sub process_failed { |