Skip to content

Commit 60823c2

Browse files
author
Andrew Boie
committed
sanitycheck: fix defconfig regex
By convention Kconfigs are in all uppercase, but not strictly required to be so. Currently the Xtensa build defines CONFIG_${XTENSA_CORE} which can have lowercase letters. This is marked for cleanup in ZEP-1711. Issue: ZEP-1711 Change-Id: Ia901ea1688202129f1629001a77f498522859f14 Signed-off-by: Andrew Boie <[email protected]>
1 parent 4713575 commit 60823c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/sanitycheck

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ def defconfig_cb(context, goals, goal):
12001200

12011201

12021202
class TestSuite:
1203-
config_re = re.compile('(CONFIG_[A-Z0-9_]+)[=]\"?([^\"]*)\"?$')
1203+
config_re = re.compile('(CONFIG_[A-Za-z0-9_]+)[=]\"?([^\"]*)\"?$')
12041204

12051205
def __init__(self, arch_root, testcase_roots, outdir, coverage):
12061206
# Keep track of which test cases we've filtered out and why

0 commit comments

Comments
 (0)