From 3e196d938181feaeac5c99f7111e37109ce1ee33 Mon Sep 17 00:00:00 2001 From: Andrea Righi Date: Mon, 28 Nov 2022 11:37:38 +0100 Subject: [PATCH] annotations: report config failures in alphabetical order This allows to review config check failures across multiple architectures. Signed-off-by: Andrea Righi --- annotations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.31.1