From: Andrea Righi Date: Mon, 28 Nov 2022 10:37:38 +0000 (+0100) Subject: annotations: report config failures in alphabetical order X-Git-Tag: v0.1~59 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=3e196d938181feaeac5c99f7111e37109ce1ee33;p=annotations.git annotations: report config failures in alphabetical order This allows to review config check failures across multiple architectures. Signed-off-by: Andrea Righi --- diff --git a/annotations b/annotations index 7820fef..1056bb5 100755 --- a/annotations +++ b/annotations @@ -115,7 +115,7 @@ def do_check(args): c_configs = c.config.keys() # Validate .config against annotations - for conf in a_configs | c_configs: + for conf in sorted(a_configs | c_configs): if conf in SKIP_CONFIGS: continue entry = a.search_config(config=conf, arch=args.arch, flavour=args.flavour)