From 47226fe77ab14311a172343d3e306264d9062d88 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 11 Mar 2019 18:33:11 +0300 Subject: [PATCH] Improve the output of OR checks --- kconfig-hardened-check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index c92d352..d9ffba6 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -103,7 +103,7 @@ class OR: if i == 0: self.result = opt.result else: - self.result = 'CONFIG_{}: {} ("{}")'.format(opt.name, opt.result, opt.expected) + self.result = 'OK: CONFIG_{} "{}"'.format(opt.name, opt.expected) return True, self.result self.result = self.opts[0].result return False, self.result -- 2.31.1