X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=kernel_hardening_checker%2Fengine.py;h=64be2043b3f679c1d577dd92e4334ecbd1d794af;hb=0cfd2e7b87a1d704e378b1d774163d7954f73cff;hp=4fdc222e7e8ac3d9fec6a2cf0a3c60c411f8c918;hpb=c49734db6223320fa19f1501560bd5cc513d0832;p=kconfig-hardened-check.git diff --git a/kernel_hardening_checker/engine.py b/kernel_hardening_checker/engine.py index 4fdc222..64be204 100644 --- a/kernel_hardening_checker/engine.py +++ b/kernel_hardening_checker/engine.py @@ -20,10 +20,9 @@ def colorize_result(input_text): return input_text if input_text.startswith('OK'): color = GREEN_COLOR - elif input_text.startswith('FAIL:'): - color = RED_COLOR else: - assert(False), f'unexpected result "{input_text}"' + assert(input_text.startswith('FAIL:')), f'unexpected result "{input_text}"' + color = RED_COLOR return f'{color}{input_text}{COLOR_END}'