Commit 4def5a25 by Alexander Popov

Drop useless checks, the ComplexOptCheck constructor has already checked this

parent 6734f7a3
...@@ -240,8 +240,6 @@ class OR(ComplexOptCheck): ...@@ -240,8 +240,6 @@ class OR(ComplexOptCheck):
# OR(<X_is_hardened>, <X_is_disabled>) # OR(<X_is_hardened>, <X_is_disabled>)
# OR(<X_is_hardened>, <old_X_is_hardened>) # OR(<X_is_hardened>, <old_X_is_hardened>)
def check(self): def check(self):
if not self.opts:
sys.exit('[!] ERROR: invalid OR check')
for i, opt in enumerate(self.opts): for i, opt in enumerate(self.opts):
opt.check() opt.check()
if opt.result.startswith('OK'): if opt.result.startswith('OK'):
...@@ -287,7 +285,6 @@ class AND(ComplexOptCheck): ...@@ -287,7 +285,6 @@ class AND(ComplexOptCheck):
if not opt.result.startswith('FAIL: version'): if not opt.result.startswith('FAIL: version'):
sys.exit('[!] ERROR: unexpected FAIL description "{}"'.format(opt.result)) sys.exit('[!] ERROR: unexpected FAIL description "{}"'.format(opt.result))
return return
sys.exit('[!] ERROR: invalid AND check')
def detect_arch(fname, archs): def detect_arch(fname, archs):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment