/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/ |
H A D | result.rb | 20 failed: { cnt: 0, files: [] }, 71 @@stats[:failed][:cnt] += 1 72 @@stats[:failed][:files] << file 79 @@stats[:failed][:cnt] += 1 80 @@stats[:failed][:files] << file 87 @@stats[:failed][:cnt] += 1 88 @@stats[:failed][:files] << file 97 @@stats[:failed][:cnt] += 1 98 @@stats[:failed][:files] << file 126 TestRunner.log 1, @@stats[:failed][ 143 def self.failed? global() singleton method in TestRunner.Result [all...] |
/arkcompiler/runtime_core/tests/cts-generator/runner/ |
H A D | result.rb | 20 failed: { cnt: 0, files: [] }, 71 @@stats[:failed][:cnt] += 1 72 @@stats[:failed][:files] << file 79 @@stats[:failed][:cnt] += 1 80 @@stats[:failed][:files] << file 87 @@stats[:failed][:cnt] += 1 88 @@stats[:failed][:files] << file 97 @@stats[:failed][:cnt] += 1 98 @@stats[:failed][:files] << file 125 TestRunner::log 1, "#{@@stats[:failed][ 139 def self.failed? global() singleton method in TestRunner.Result [all...] |
/arkcompiler/runtime_core/verifier/tests/ |
H A D | version_compatibility_test.py | 92 print(f"Verification failed for {abc_file}: {result.stderr}") 100 def report_results(passed, failed, total, failed_files): 105 print(Color.apply(Color.RED, f"Failed: {failed}")) 107 if failed > 0: 140 passed, failed, total, failed_files = verify_abcs(verifier_dir, output_dir) 141 report_results(passed, failed, total, failed_files) 143 if failed == 0 and not args.keep_files: 147 print(f"Verification failed or keep-files flag is set, keeping {output_dir} for inspection.")
|
H A D | verify_es2panda_test_abc.py | 83 print(f"Verification failed for {abc_output_path}:\n{stderr}") 92 def report_results(total, passed, failed, ignored, start_time): 100 print(f"Failed: {failed}") 117 failed = 0 131 failed += 1 138 report_results(total, passed, failed, ignored, start_time)
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/ |
H A D | html_view.py | 60 report = report.replace(INDEX_FAILED, str(self.__summary.failed)) 87 for failed in failed_tests: 88 failed_id, failed_path = failed
|
H A D | spec_node.py | 44 self.failed: int = 0 67 ret['failed'] = self.failed
|
H A D | summary.py | 25 failed: int = 0
|
H A D | spec_report.py | 198 node.failed += 1 214 failed = self.__fmt_num(node.failed_acc) 218 return f"| {title} | {dirs} | {status} | {total} | {passed} | {failed} | {ign_pas} | {ignored} |{excluded}"
|
H A D | xml_view.py | 47 total = self.__summary.passed + self.__summary.failed + self.__summary.ignored
|
H A D | detailed_report.py | 110 summary.failed += 1 127 f"{summary.passed} | {summary.failed} | "
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
H A D | execution.py | 109 logging.error(f'Test:{test_name} failed,due to full compilation failed') 132 logging.error(f'Test:{test_name} failed,due to full compilation failed') 142 info.result = options.TaskResult.failed 157 logging.error(f'Test:{test_name} failed,due to full compilation failed') 167 info.result = options.TaskResult.failed 182 logging.error(f'Test:{test_name} failed,due to full compilation failed') [all...] |
H A D | result.py | 93 self.failed = [] 104 logging.info("Failed test number: %s", len(test_result.failed)) 232 test_result.failed.append(task) 243 elif result_type == options.TaskResult.failed: 255 for task in test_result.failed: 261 'Failed Test Number': len(test_result.failed),
|
H A D | options.py | 39 failed = 2 variable in TaskResult
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | interpreter_test.cpp | 1885 auto AddProgramToClassLinker(std::string_view source, bool &failed) in AddProgramToClassLinker() argument 1893 failed = true; in AddProgramToClassLinker() 1901 auto InitObjectClass(ClassLinker *classLinker, const uint8_t *descriptor, bool &failed) in InitObjectClass() argument 1906 failed = !classLinker->InitializeClass(thread, objectClass); in InitObjectClass() 1945 bool failed = false; in TEST_F() local 1946 auto classLinker = AddProgramToClassLinker(source, failed); in TEST_F() 1947 ASSERT_FALSE(failed); in TEST_F() 1950 auto objectClass = InitObjectClass(classLinker.get(), GetClassDescriptor("R"), failed); in TEST_F() 1951 ASSERT_FALSE(failed); in TEST_F() 1962 auto objectClass = InitObjectClass(classLinker.get(), GetClassDescriptor("R"), failed); in TEST_F() 2040 bool failed = false; TEST_F() local 2089 bool failed = false; TEST_F() local 2216 bool failed = false; TEST_F() local 2268 bool failed = false; TEST_F() local 2334 bool failed = false; TEST_F() local 2389 bool failed = false; TEST_F() local 2448 bool failed = false; TEST_F() local 2505 bool failed = false; TestNullReferenceException() local [all...] |
/arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/ |
H A D | compare.py | 28 parser.add_argument("--failed", metavar="JSON_FILE_PATH", required=False, 130 if args.failed: 131 with open(args.failed, 'w') as fp:
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/benchmark/ |
H A D | compare.py | 29 parser.add_argument("--failed", metavar="JSON_FILE_PATH", required=False, 133 if args.failed: 136 with os.fdopen(os.open(args.failed, flags, mode), 'w') as fp:
|
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
H A D | paoc.cpp | 743 PrintError("Graph creation failed!"); in TryCreateGraph() 759 LOG(INFO, COMPILER) << "Emit code failed"; in FinalizeCompileAot() 812 PrintError("IrBuilder failed!"); in CompileAot() 824 LOG_PAOC(FATAL) << "LLVM AOT failed (unknown instruction)"; in CompileAot() 837 PrintError("RunOptimizations failed!"); in CompileAot()
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
H A D | runner_file_based.py | 226 self.failed = 0 237 return self.failed 252 self.name, len(results) + self.excluded, self.passed, self.failed, 278 return self.failed 339 self.failed += 1
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/static_enum/ |
H A D | static_enum_test.js | 19 console.log(`assertEq failed: '${a}' === '${b}'`);
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/js_files/ |
H A D | heapdump.js | 122 let success = false; // Simulated operation failed 126 reject(new Error('operation failed'));
|
/arkcompiler/ets_frontend/es2panda/ |
H A D | es2panda.cpp | 81 throw Error(ErrorType::GENERIC, "Open abc file " + fname + " failed."); in CheckOptionsAndFileForAbcInput() 235 bool failed = false; in CompileFiles() local 248 failed = true; in CompileFiles() 271 // Optimization failed, but the program can still be used as unoptimized in CompileFiles() 276 return failed ? 1 : 0; in CompileFiles()
|
/arkcompiler/runtime_core/static_core/scripts/ |
H A D | compiler_bisect.py | 159 failed = res.returncode != 0 160 if (expect_fail is not None) and failed != expect_fail: 193 # If script failed, updates the option and returns True; 270 exit_fail("Script failed without compiled methods")
|
/arkcompiler/ets_frontend/arkguard/scripts/ |
H A D | execute_result_statistics.js | 34 console.error(`Test case ${filePath} failed:`, error); 139 console.log('Execution failed files:'); 148 console.log('Content comparision failed files:');
|
/arkcompiler/runtime_core/static_core/tests/cts-generator/ |
H A D | test-runner.rb | 311 TestRunner::log 1, "Testing timeout reached, so testing failed" if timeouted 312 TestRunner::log 1, "Testing interrupted and failed" if interrupted 314 exit 1 if interrupted || timeouted || TestRunner::Result.failed?
|
/arkcompiler/runtime_core/tests/cts-generator/ |
H A D | test-runner.rb | 311 TestRunner::log 1, "Testing timeout reached, so testing failed" if timeouted 312 TestRunner::log 1, "Testing interrupted and failed" if interrupted 314 exit 1 if interrupted || timeouted || TestRunner::Result.failed?
|