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>
This commit is contained in:
Steven Rostedt (Red Hat) 2014-04-23 22:27:27 -04:00 коммит произвёл Steven Rostedt
Родитель 4186cb4518
Коммит 4cc559bd1d
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -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 {