projects
/
kconfig-hardened-check.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6734f7a
)
Drop useless checks, the ComplexOptCheck constructor has already checked this
author
Alexander Popov
<alex.popov@linux.com>
Wed, 8 Jun 2022 17:13:42 +0000
(20:13 +0300)
committer
Alexander Popov
<alex.popov@linux.com>
Wed, 8 Jun 2022 17:13:42 +0000
(20:13 +0300)
kconfig_hardened_check/__init__.py
patch
|
blob
|
history
diff --git
a/kconfig_hardened_check/__init__.py
b/kconfig_hardened_check/__init__.py
index 01ffcbdd0a2cdd18ecd1ee0396d152c175d6c770..9cb16509d30e21d3d153cf53edd5d347b1bc3f7c 100644
(file)
--- a/
kconfig_hardened_check/__init__.py
+++ b/
kconfig_hardened_check/__init__.py
@@
-240,8
+240,6
@@
class OR(ComplexOptCheck):
# OR(<X_is_hardened>, <X_is_disabled>)
# OR(<X_is_hardened>, <old_X_is_hardened>)
def check(self):
- if not self.opts:
- sys.exit('[!] ERROR: invalid OR check')
for i, opt in enumerate(self.opts):
opt.check()
if opt.result.startswith('OK'):
@@
-287,7
+285,6
@@
class AND(ComplexOptCheck):
if not opt.result.startswith('FAIL: version'):
sys.exit('[!] ERROR: unexpected FAIL description "{}"'.format(opt.result))
return
- sys.exit('[!] ERROR: invalid AND check')
def detect_arch(fname, archs):