Home
last modified time | relevance | path

Searched refs:failed (Results 1 - 25 of 35) sorted by relevance

12

/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/
H A Dresult.rb20 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 Dresult.rb20 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 Dversion_compatibility_test.py92 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 Dverify_es2panda_test_abc.py83 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 Dhtml_view.py60 report = report.replace(INDEX_FAILED, str(self.__summary.failed))
87 for failed in failed_tests:
88 failed_id, failed_path = failed
H A Dspec_node.py44 self.failed: int = 0
67 ret['failed'] = self.failed
H A Dsummary.py25 failed: int = 0
H A Dspec_report.py198 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 Dxml_view.py47 total = self.__summary.passed + self.__summary.failed + self.__summary.ignored
H A Ddetailed_report.py110 summary.failed += 1
127 f"{summary.passed} | {summary.failed} | "
/arkcompiler/ets_frontend/test/scripts/sdk_test/
H A Dexecution.py109 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 Dresult.py93 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 Doptions.py39 failed = 2 variable in TaskResult
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Dinterpreter_test.cpp1885 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 Dcompare.py28 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 Dcompare.py29 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 Dpaoc.cpp743 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 Drunner_file_based.py226 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 Dstatic_enum_test.js19 console.log(`assertEq failed: '${a}' === '${b}'`);
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/js_files/
H A Dheapdump.js122 let success = false; // Simulated operation failed
126 reject(new Error('operation failed'));
/arkcompiler/ets_frontend/es2panda/
H A Des2panda.cpp81 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 Dcompiler_bisect.py159 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 Dexecute_result_statistics.js34 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 Dtest-runner.rb311 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 Dtest-runner.rb311 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?

Completed in 14 milliseconds

12