From: Andrea Righi Date: Mon, 14 Nov 2022 22:09:07 +0000 (+0100) Subject: annotations: check: catch options that are removed from the .config X-Git-Tag: v0.1~67 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=79c94e03cd44f4cefec7c75eb6d319c90a1e366b;p=annotations.git annotations: check: catch options that are removed from the .config Signed-off-by: Andrea Righi --- diff --git a/annotations b/annotations index 4e66a29..e5aac6f 100755 --- a/annotations +++ b/annotations @@ -76,30 +76,38 @@ def do_check(args): if args.arch is None: arg_fail('error: --arch is required with --check') - # Parse target .config - c = KConfig(args.check_file) + print(f"check-config: loading annotations from {args.file}") + total = good = ret = 0 # Load annotations settings a = Annotation(args.file) + a_configs = a.search_config(arch=args.arch, flavour=args.flavour).keys() + + # Parse target .config + c = KConfig(args.check_file) + c_configs = c.config.keys() # Validate .config against annotations - print(f"check-config: loading annotations from {args.file}") - total = good = ret = 0 - for conf in c.config: + SKIP_CONFIGS = ( # CONFIG_VERSION_SIGNATURE is dynamically set during the build - if conf == 'CONFIG_VERSION_SIGNATURE': - continue + 'CONFIG_VERSION_SIGNATURE', # Allow to use a different version of gcc - if conf == 'CONFIG_CC_VERSION_TEXT': + 'CONFIG_CC_VERSION_TEXT', + ) + for conf in a_configs | c_configs: + if conf in SKIP_CONFIGS: continue - policy = a.config[conf] if conf in a.config else None - expected = a.search_config(config=conf, arch=args.arch, flavour=args.flavour)[conf] - if expected != c.config[conf]: - print(f"check-config: FAIL: ({c.config[conf]} != {expected}): {conf} {policy})") + entry = a.search_config(config=conf, arch=args.arch, flavour=args.flavour) + expected = entry[conf] if entry else '-' + value = c.config[conf] if conf in c.config else '-' + if value != expected: + policy = a.config[conf] if conf in a.config else 'undefined' + print(f"check-config: FAIL: ({value} != {expected}): {conf} {policy})") ret = 1 else: good += 1 total += 1 + print(f"check-config: {good}/{total} checks passed -- exit {ret}") exit(ret) diff --git a/kconfig/annotations.py b/kconfig/annotations.py index c3eb457..699aed7 100644 --- a/kconfig/annotations.py +++ b/kconfig/annotations.py @@ -219,11 +219,12 @@ class Annotation(Config): return self.config[config] elif config is not None and arch is not None: # Get a specific config option for a specific architecture - if 'policy' in self.config[config]: - if flavour in self.config[config]['policy']: - return {config: self.config[config]['policy'][flavour]} - elif arch in self.config[config]['policy']: - return {config: self.config[config]['policy'][arch]} + if config in self.config: + if 'policy' in self.config[config]: + if flavour in self.config[config]['policy']: + return {config: self.config[config]['policy'][flavour]} + elif arch in self.config[config]['policy']: + return {config: self.config[config]['policy'][arch]} return None @staticmethod