Skip to content

Commit

Permalink
ktest: Ignore unset values of the minconfig in config_bisect
Browse files Browse the repository at this point in the history
By ignoring the unset values of the minconfig in deciding
what to test in the config_bisect can cause the problem
config from being tested too.

Just do not test the configs that are set in the minconfig.

Signed-off-by: Steven Rostedt <[email protected]>
  • Loading branch information
Steven Rostedt authored and rostedt committed Jun 2, 2011
1 parent 4da46da commit 9bf7174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/testing/ktest/ktest.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1480,7 +1480,7 @@ sub process_config_ignore {
or dodie "Failed to read $config";

while (<IN>) {
if (/^(.*?(CONFIG\S*)(=.*| is not set))/) {
if (/^((CONFIG\S*)=.*)/) {
$config_ignore{$2} = $1;
}
}
Expand Down

0 comments on commit 9bf7174

Please sign in to comment.