From: Alexander Popov Date: Wed, 15 Jul 2020 13:12:54 +0000 (+0300) Subject: Improve ComplexOptCheck use cases X-Git-Tag: v0.5.7~8 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=4a0987242476561cd4e3157f9eb788568345901f;hp=01cd4043d041d1922e71e78766f03d1d95bad614;p=kconfig-hardened-check.git Improve ComplexOptCheck use cases --- diff --git a/kconfig_hardened_check/__init__.py b/kconfig_hardened_check/__init__.py index 060b1de..635c927 100644 --- a/kconfig_hardened_check/__init__.py +++ b/kconfig_hardened_check/__init__.py @@ -178,9 +178,9 @@ class ComplexOptCheck: class OR(ComplexOptCheck): # self.opts[0] is the option that this OR-check is about. - # Use case: + # Use cases: # OR(, ) - # OR(, ) + # OR(, ) def check(self): if not self.opts: @@ -200,8 +200,10 @@ class OR(ComplexOptCheck): class AND(ComplexOptCheck): # self.opts[0] is the option that this AND-check is about. - # Use case: AND(, ) - # Suboption is not checked if checking of the main_option is failed. + # Use cases: + # AND(, ) + # Suboption is not checked if checking of the main_option is failed. + # AND(, ) def check(self): for i, opt in reversed(list(enumerate(self.opts))): @@ -211,7 +213,7 @@ class AND(ComplexOptCheck): return ret if not ret: if hasattr(opt, 'expected'): - self.result = 'FAIL: CONFIG_{} is needed'.format(opt.name) + self.result = 'FAIL: CONFIG_{} not "{}"'.format(opt.name, opt.expected) else: self.result = opt.result return False