From: Steven Rostedt Date: Thu, 2 Jun 2011 03:27:19 +0000 (-0400) Subject: ktest: Ignore unset values of the minconfig in config_bisect X-Git-Tag: v3.0-rc2~12^2 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=9bf7174949aef2f43253956e1f3ab01698abbd79;p=karo-tx-linux.git ktest: Ignore unset values of the minconfig in config_bisect 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 --- diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 6c68259e730d..cef28e6632b9 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -1480,7 +1480,7 @@ sub process_config_ignore { or dodie "Failed to read $config"; while () { - if (/^(.*?(CONFIG\S*)(=.*| is not set))/) { + if (/^((CONFIG\S*)=.*)/) { $config_ignore{$2} = $1; } }