projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4da46da
)
ktest: Ignore unset values of the minconfig in config_bisect
author
Steven Rostedt
<srostedt@redhat.com>
Thu, 2 Jun 2011 03:27:19 +0000
(23:27 -0400)
committer
Steven 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
patch
|
blob
|
blame
|
history
diff --git
a/tools/testing/ktest/ktest.pl
b/tools/testing/ktest/ktest.pl
index 6c68259e730d461feb794ed8031bc58f79227ec9..cef28e6632b98cd4e82426f45805f676c2fc0543 100755
(executable)
--- 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 (<IN>) {
- if (/^(
.*?(CONFIG\S*)(=.*| is not set)
)/) {
+ if (/^(
(CONFIG\S*)=.*
)/) {
$config_ignore{$2} = $1;
}
}