Lines Matching refs:Check
527 Check = collections.namedtuple('Check', ['enabled', 'runner', 'arg']) variable
531 Check(options.check_signed_off, run_check, [settings.SIGNED_OFF_SCRIPT]
533 Check(options.check_cppcheck, run_check, [settings.CPPCHECK_SCRIPT]),
534 Check(options.check_doxygen, run_check, [settings.DOXYGEN_SCRIPT]),
535 Check(options.check_pylint, run_check, [settings.PYLINT_SCRIPT]),
536 Check(options.check_vera, run_check, [settings.VERA_SCRIPT]),
537 Check(options.check_license, run_check, [settings.LICENSE_SCRIPT]),
538 Check(options.check_magic_strings, run_check, [settings.MAGIC_STRINGS_SCRIPT]),
539 Check(options.jerry_debugger, run_jerry_debugger_tests, options),
540 Check(options.jerry_tests, run_jerry_tests, options),
541 Check(options.jerry_test_suite, run_jerry_test_suite, options),
542 Check(options.test262 or options.test262_es2015, run_test262_test_suite, options),
543 Check(options.unittests, run_unittests, options),
544 Check(options.buildoption_test, run_buildoption_test, options),