aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/ktest/ktest.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/ktest/ktest.pl')
-rwxr-xr-xtools/testing/ktest/ktest.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl
index f81c8b3a39a..62a134dc421 100755
--- a/tools/testing/ktest/ktest.pl
+++ b/tools/testing/ktest/ktest.pl
@@ -104,6 +104,7 @@ my $start_minconfig;
104my $start_minconfig_defined; 104my $start_minconfig_defined;
105my $output_minconfig; 105my $output_minconfig;
106my $ignore_config; 106my $ignore_config;
107my $ignore_errors;
107my $addconfig; 108my $addconfig;
108my $in_bisect = 0; 109my $in_bisect = 0;
109my $bisect_bad_commit = ""; 110my $bisect_bad_commit = "";
@@ -218,6 +219,7 @@ my %option_map = (
218 "BISECT_SLEEP_TIME" => \$bisect_sleep_time, 219 "BISECT_SLEEP_TIME" => \$bisect_sleep_time,
219 "PATCHCHECK_SLEEP_TIME" => \$patchcheck_sleep_time, 220 "PATCHCHECK_SLEEP_TIME" => \$patchcheck_sleep_time,
220 "IGNORE_WARNINGS" => \$ignore_warnings, 221 "IGNORE_WARNINGS" => \$ignore_warnings,
222 "IGNORE_ERRORS" => \$ignore_errors,
221 "BISECT_MANUAL" => \$bisect_manual, 223 "BISECT_MANUAL" => \$bisect_manual,
222 "BISECT_SKIP" => \$bisect_skip, 224 "BISECT_SKIP" => \$bisect_skip,
223 "CONFIG_BISECT_GOOD" => \$config_bisect_good, 225 "CONFIG_BISECT_GOOD" => \$config_bisect_good,
@@ -1529,7 +1531,7 @@ sub monitor {
1529 } 1531 }
1530 1532
1531 if ($full_line =~ /call trace:/i) { 1533 if ($full_line =~ /call trace:/i) {
1532 if (!$bug && !$skip_call_trace) { 1534 if (!$ignore_errors && !$bug && !$skip_call_trace) {
1533 $bug = 1; 1535 $bug = 1;
1534 $failure_start = time; 1536 $failure_start = time;
1535 } 1537 }