aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtools/testing/ktest/ktest.pl8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
index 880566803431..55ab700f6ba5 100755
--- a/tools/testing/ktest/ktest.pl
+++ b/tools/testing/ktest/ktest.pl
@@ -2923,7 +2923,13 @@ sub compare_configs {
2923sub run_config_bisect_test { 2923sub run_config_bisect_test {
2924 my ($type) = @_; 2924 my ($type) = @_;
2925 2925
2926 return run_bisect_test $type, "oldconfig"; 2926 my $ret = run_bisect_test $type, "oldconfig";
2927
2928 if ($bisect_manual) {
2929 $ret = answer_bisect;
2930 }
2931
2932 return $ret;
2927} 2933}
2928 2934
2929sub process_failed { 2935sub process_failed {