File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -174,22 +174,22 @@ def main():
174
174
if script_args .all or script_args .check_signed_off :
175
175
ret = run_check (SIGNED_OFF_SCRIPT )
176
176
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 ) :
178
178
ret = run_check (CPPCHECK_SCRIPT )
179
179
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 ) :
181
181
ret = run_check (VERA_SCRIPT )
182
182
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 ) :
184
184
ret = run_jerry_tests ()
185
185
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 ) :
187
187
ret = run_jerry_test_suite ()
188
188
189
- if not ret and script_args .all or script_args .unittests :
189
+ if not ret and ( script_args .all or script_args .unittests ) :
190
190
ret = run_unittests ()
191
191
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 ) :
193
193
ret = run_buildoption_test ()
194
194
195
195
sys .exit (ret )
You can’t perform that action at this time.
0 commit comments