File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -174,22 +174,22 @@ def main():
174174 if script_args .all or script_args .check_signed_off :
175175 ret = run_check (SIGNED_OFF_SCRIPT )
176176
177- if not ret and script_args .all or script_args .check_cppcheck :
177+ if not ret and ( script_args .all or script_args .check_cppcheck ) :
178178 ret = run_check (CPPCHECK_SCRIPT )
179179
180- if not ret and script_args .all or script_args .check_vera :
180+ if not ret and ( script_args .all or script_args .check_vera ) :
181181 ret = run_check (VERA_SCRIPT )
182182
183- if not ret and script_args .all or script_args .jerry_tests :
183+ if not ret and ( script_args .all or script_args .jerry_tests ) :
184184 ret = run_jerry_tests ()
185185
186- if not ret and script_args .all or script_args .jerry_test_suite :
186+ if not ret and ( script_args .all or script_args .jerry_test_suite ) :
187187 ret = run_jerry_test_suite ()
188188
189- if not ret and script_args .all or script_args .unittests :
189+ if not ret and ( script_args .all or script_args .unittests ) :
190190 ret = run_unittests ()
191191
192- if not ret and script_args .all or script_args .buildoption_test :
192+ if not ret and ( script_args .all or script_args .buildoption_test ) :
193193 ret = run_buildoption_test ()
194194
195195 sys .exit (ret )
You can’t perform that action at this time.
0 commit comments