From: Alexander Popov Date: Wed, 8 Jun 2022 21:24:36 +0000 (+0300) Subject: Turn some error conditions into assertions (part 2) X-Git-Tag: v0.6.1~145 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;ds=sidebyside;h=337f806fbae3aa3147ec9f8f529f94577d85288c;hp=3ff6e747ff1b8c085b6057d8e684aafac1eecc92;p=kconfig-hardened-check.git Turn some error conditions into assertions (part 2) --- diff --git a/kconfig_hardened_check/__init__.py b/kconfig_hardened_check/__init__.py index 45bd9d5..635397e 100644 --- a/kconfig_hardened_check/__init__.py +++ b/kconfig_hardened_check/__init__.py @@ -252,9 +252,10 @@ class OR(ComplexOptCheck): self.result = 'OK: {} not found'.format(opt.name) elif opt.result == 'OK: is present': self.result = 'OK: {} is present'.format(opt.name) - # VersionCheck provides enough info - elif not opt.result.startswith('OK: version'): - sys.exit('[!] ERROR: unexpected OK description "{}"'.format(opt.result)) + else: + # VersionCheck provides enough info + assert(opt.result.startswith('OK: version')), \ + 'unexpected OK description "{}"'.format(opt.result) return self.result = self.opts[0].result @@ -282,8 +283,8 @@ class AND(ComplexOptCheck): else: # VersionCheck provides enough info self.result = opt.result - if not opt.result.startswith('FAIL: version'): - sys.exit('[!] ERROR: unexpected FAIL description "{}"'.format(opt.result)) + assert(opt.result.startswith('FAIL: version')), \ + 'unexpected FAIL description "{}"'.format(opt.result) return