• Home
  • Raw
  • Download

Lines Matching +full:pylint +full:- +full:exit

71                                    outcome_file: str) -> None:
77 shell_command = "tests/scripts/all.sh --outcome-file " + outcome_file + \
86 allow_list: typing.List[str], full_coverage: bool) -> None:
106 def name_matches_pattern(name: str, str_or_re) -> bool:
108 - If the pattern is a string, name must be equal to match.
109 - If the pattern is a regex, name must fully match.
120 ignored_suites: typing.List[str], ignored_tests=None) -> None:
124 - full test suites provided in ignored_suites list
125 - only some specific test inside a test suite, for which the corresponding
144 # Immediately skip fully-ignored test suites
158 results.error("PASS -> SKIP/FAIL: {}", suite_case)
162 def analyze_outcomes(results: Results, outcomes: Outcomes, args) -> None:
167 def read_outcome_file(outcome_file: str) -> Outcomes:
171 with open(outcome_file, 'r', encoding='utf-8') as input_file:
187 def do_analyze_coverage(results: Results, outcomes: Outcomes, args) -> None:
192 def do_analyze_driver_vs_reference(results: Results, outcomes: Outcomes, args) -> None:
219 # - tests/scripts/all.sh --outcome-file "$PWD/out.csv" <component_ref> <component_driver>
220 # - tests/scripts/analyze_outcomes.py out.csv analyze_driver_vs_reference_xxx
222 # - tests/scripts/analyze_outcomes.py out.csv analyze_driver_vs_reference_xxx
288 # low-level (block/stream) cipher modules
330 # pylint: disable=line-too-long
365 re.compile(r'ECP check public-private .*'),
606 re.compile('Set( non-existent)? padding with (AES|CAMELLIA).*'),
611 re.compile(r'PBES2 .* AES-.*')
617 re.compile('Parse RSA Key.*(password|AES-).*'),
657 'comma/space-separated list of tasks. ')
658 parser.add_argument('--list', action='store_true',
659 help='List all available tasks and exit.')
660 parser.add_argument('--require-full-coverage', action='store_true',
670 sys.exit(0)
679 sys.exit(2)
689 sys.exit(2)
693 … task['test_function'] != do_analyze_driver_vs_reference: # pylint: disable=comparison-with-callab…
695 sys.exit(2)
712 sys.exit(0 if (main_results.error_count == 0) else 1)
714 except Exception: # pylint: disable=broad-except
715 # Print the backtrace and exit explicitly with our chosen status.
717 sys.exit(120)