]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ktest: Ignore unset values of the minconfig in config_bisect
authorSteven Rostedt <srostedt@redhat.com>
Thu, 2 Jun 2011 03:27:19 +0000 (23:27 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Thu, 2 Jun 2011 15:57:57 +0000 (11:57 -0400)
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 <rostedt@goodmis.org>
tools/testing/ktest/ktest.pl

index 6c68259e730d461feb794ed8031bc58f79227ec9..cef28e6632b98cd4e82426f45805f676c2fc0543 100755 (executable)
@@ -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;
        }
     }