/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/ |
H A D | detailed_report.py | 24 from runner.reports.summary import Summary 102 summary = self.result[test_path] 103 summary.total += 1 105 summary.excluded_after += 1 108 summary.passed += 1 110 summary.failed += 1 112 summary.ignored_but_passed += 1 114 summary.ignored += 1 115 self.result[test_path] = summary 123 summary [all...] |
H A D | standard_view.py | 27 from runner.reports.summary import Summary 36 def __init__(self, report_root: Path, update_excluded: bool, excluded_lists: List[str], summary: Summary) -> None: 42 self.__summary = summary 118 Log.summary(_LOGGER, "Test execution time") 121 Log.summary(_LOGGER, f"Less {time_edge} sec: {len(tests_by_time[i])}") 125 Log.summary(_LOGGER, f"More {time_edges[-1]} sec: {len(tests_by_time[-1])}")
|
H A D | html_view.py | 29 from runner.reports.summary import Summary 46 def __init__(self, report_root: Path, config: Config, summary: Summary) -> None: 49 self.__summary = summary
|
H A D | xml_view.py | 25 from runner.reports.summary import Summary 33 def __init__(self, report_root: Path, summary: Summary) -> None: 37 self.__summary = summary
|
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/bin/ |
H A D | spectrac.rb | 43 opts.on('-r', '--report [FILE]', 'Output the test coverage summary report in yaml') 83 summary = Summary.new(fullspec) 84 summary.compute 86 File.write(options.report, summary.report.to_yaml) if options.report 87 File.write(options.uncovered, summary.uncovered.to_yaml) if options.uncovered 91 ReportMd.new(summary.report).generate 92 UncoveredMd.new(summary.uncovered).generate(options.uncovered_md) if options.uncovered_md
|
/arkcompiler/runtime_core/tests/cts-coverage-tool/bin/ |
H A D | spectrac.rb | 43 opts.on('-r', '--report [FILE]', 'Output the test coverage summary report in yaml') 83 summary = Summary.new(fullspec) 84 summary.compute 86 File.write(options.report, summary.report.to_yaml) if options.report 87 File.write(options.uncovered, summary.uncovered.to_yaml) if options.uncovered 91 ReportMd.new(summary.report).generate 92 UncoveredMd.new(summary.uncovered).generate(options.uncovered_md) if options.uncovered_md
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
H A D | utils.py | 40 Log.summary(_LOGGER, f"Downloaded block: {block_num} ({block_size}). Total: {total_size}") 47 Log.summary(_LOGGER, f"Downloading from {url_file} to {archive_file}") 56 Log.summary(_LOGGER, f"Extracting archive {archive_file} to {target_path}") 75 Log.summary(_LOGGER, "Prepare test files") 92 Log.summary(_LOGGER, "Copy and transform test files") 98 Log.summary(_LOGGER, f"Create stamp file {stamp_file}")
|
H A D | runner_base.py | 126 Log.summary(_LOGGER, f"TEST_ROOT set to {self.test_root}") 133 Log.summary(_LOGGER, f"LIST_ROOT set to {self.list_root}") 209 Log.summary(_LOGGER, f"There are {len(dupes)} duplicates in {kind} lists.") 213 Log.summary(_LOGGER, f"No duplicates found in {kind} lists.") 247 Log.summary(_LOGGER, f"Loading tests from the list {list_path}") 274 Log.summary(_LOGGER, f"Loading tests from the directory {directory}") 313 Log.summary(_LOGGER, f"Found {len(already_excluded)} tests present both in excluded and ignored test " 322 Log.summary(_LOGGER, f"Found {len(ignored_absent)} tests in ignored lists but absent on the file system:") 324 Log.summary(_LOGGER, f"\t{test}")
|
H A D | runner_file_based.py | 47 from runner.reports.summary import Summary 251 summary = Summary( 257 xml_view = XmlView(self.work_dir.report, summary) 265 html_view = HtmlView(self.work_dir.report, self.config, summary) 268 summary.passed = summary.passed - summary.ignored_but_passed 270 standard_view = StandardView(self.work_dir.report, self.update_excluded, self.excluded_lists, summary)
|
H A D | logger.py | 81 def summary(logger: logging.Logger, message: str) -> None: member in Log
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | report.py | 57 self.summary = '' 67 self.summary = f'Time: {t_diff}; Size: {s_diff}; RSS: {r_diff}' 70 self.summary += f' New Fails: {new_fail}; Missed: {missed}' 72 self.summary += f' New: {new}; Fixed: {fixed}' 76 caption(self.summary) 87 summary: str = '' 202 self.summary = f'{self.total_cnt} tests; ' \ 213 caption(f'{self.summary}') 274 self.summary = '' 284 self.summary [all...] |
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/declgenparser/ |
H A D | runner_declgenparser.py | 51 Log.summary(_LOGGER, f"LIST_ROOT set to {self.list_root}") 53 Log.summary(_LOGGER, f"TEST_ROOT set to {self.test_root}")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/astchecker/ |
H A D | runner_astchecker.py | 48 Log.summary(_LOGGER, f'LIST_ROOT set to {self.list_root}') 51 Log.summary(_LOGGER, f'TEST_ROOT set to {self.test_root}')
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/parser/ |
H A D | runner_js_parser.py | 50 Log.summary(_LOGGER, f"LIST_ROOT set to {self.list_root}") 53 Log.summary(_LOGGER, f"TEST_ROOT set to {self.test_root}")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/system/ |
H A D | runner_ets_system.py | 66 Log.summary(_LOGGER, f"LIST_ROOT set to {self.list_root}") 69 Log.summary(_LOGGER, f"TEST_ROOT set to {self.test_root}")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/ |
H A D | runner_js_test262.py | 40 Log.summary(_LOGGER, f"LIST_ROOT set to {self.list_root}") 50 Log.summary(_LOGGER, f"TEST_ROOT reset to {self.test_root}")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ |
H A D | runner_ets.py | 77 Log.summary(_LOGGER, f"TEST_ROOT set to {self.test_root}") 78 Log.summary(_LOGGER, f"LIST_ROOT set to {self.list_root}")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/ |
H A D | main.py | 42 Log.summary(logger, f"Loaded configuration: {config}")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/ |
H A D | runner_js_hermes.py | 47 Log.summary(_LOGGER, f"TEST_ROOT reset to {self.test_root}")
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/ |
H A D | config.py | 54 Log.summary(_LOGGER, warning)
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
H A D | test_result.py | 307 test.assertTrue(vmb_rep.summary == '1 tests; 0 failed; 0 excluded; ' \
|
/arkcompiler/ets_frontend/testTs/ |
H A D | run_testTs.py | 230 def summary(): function 242 print("\n Regression summary") 343 return summary()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | dump.cpp | 445 ArenaString summary = opcode + space + open; in DumpOpcode() local 447 summary += ArenaString("IsFunc", adapter); in DumpOpcode() 452 summary += ArenaString(", ", adapter); in DumpOpcode() 454 summary += ArenaString("IsNotClassConstr", adapter); in DumpOpcode() 456 summary += close + space; in DumpOpcode() 457 (*out) << std::setw(INDENT_OPCODE) << summary; in DumpOpcode()
|