Home
last modified time | relevance | path

Searched full:passed (Results 1 – 25 of 120) sorted by relevance

12345

/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dexecution.py50 passed = validate(inc_task, task, is_debug, stdout,
52 logging.debug(f"validate new module hap file, passed {passed}")
53 if not passed:
175 passed = validate(inc_task, task, is_debug, stdout, stderr)
176 if passed:
196 passed = validate(inc_task, task, is_debug, stdout, stderr)
197 if passed:
241 passed = validate(inc_task, task, is_debug, stdout, stderr)
242 if passed:
259 passed = validate(inc_task, task, is_debug, stdout, stderr)
[all …]
Dresult.py49 self.passed = []
60 logging.info("Passed test number: %s", len(test_result.passed))
118 passed_release = task_info.release_info.result == options.TaskResult.passed
120 passed_debug = task_info.debug_info.result == options.TaskResult.passed
136 … passed_release = passed_release and inc_task.release_info.result == options.TaskResult.passed
138 passed_debug = passed_debug and inc_task.debug_info.result == options.TaskResult.passed
144 passed = is_full_compilation_passed(task.full_compilation_info) and \
148 passed = passed and (test.result == options.TaskResult.passed)
150 return passed
158 test_result.passed.append(task)
[all …]
/arkcompiler/runtime_core/tests/cts-generator/runner/
Dresult.rb19 @@stats = { passed: { cnt: 0, files: [] },
55 @@stats[:passed][:cnt] += 1
56 @@stats[:passed][:files] << file
63 @@stats[:passed][:cnt] += 1
64 @@stats[:passed][:files] << file
107 @@stats[:passed][:cnt] += 1
108 @@stats[:passed][:files] << file
123 TestRunner::log 2, "Passed: #{@@stats[:passed][:files].sort.to_yaml}"
133 TestRunner::log 1, "Passed: #{@@stats[:passed][:cnt]}"
/arkcompiler/ets_frontend/es2panda/test/
Dtest262util.py159 if return_code == 0: # passed
161 return False, False # negative test passed
163 return True, True # positive test passed
174 if return_code == 0: # passed
176 return False # negative test passed
178 passed = (len(std_err) == 0)
180 passed = passed and bool(self.async_ok.match(out))
181 return passed # positive test passed?
Drunner.py144 help='Additional arguments that will passed to ark_aot')
176 self.passed = None
206 self.passed = expected == self.output and process.returncode in [
209 self.passed = False
211 if not self.passed:
272 self.passed = False
279 self.passed, need_exec = runner.util.validate_parse_result(
282 if not self.passed:
290 self.passed = True
314 self.passed = False
[all …]
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DnoImplicitReturnsInAsync1.ts29 let x = await Promise.resolve("The test is passed without an error.");
31 AssertType(await Promise.resolve("The test is passed without an error."), "string");
32 AssertType(Promise.resolve("The test is passed without an error."), "Promise<string>");
34 AssertType("The test is passed without an error.", "string");
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/
Djtr_reporter.rb58 if !(@status =~ /Passed\.|Not run\./) and !@output.empty?
110 @status = 'Passed. Test failed to compile, as expected.'
115 @status = 'Passed. Compilation-only test.'
142 @status = "Passed. Exit code: #{status}."
Dallure_reporter.rb115 @status = 'passed'
120 @status = 'passed'
147 @status = 'passed'
Dtest_reporter.rb92 @logger.log 2, "TEST PASSED: #{@pa_file}"
98 @logger.log 2, "TEST PASSED: #{@pa_file}"
130 @logger.log 2, "TEST PASSED: #{@pa_file}"
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dtemplate.yaml39 ldai 0 # passed
49 ldai 0 # passed
62 ldai 0 # passed
75 ldai 0 # passed
86 ldai 0 # passed
97 ldai 0 # passed
Dcall.short.yaml31 Arguments are passed in source registers in the same order as in method signature.
33 be discarded and corresponding registers will not be passed to the callee).
151 description: Verifier should check usage of uninitialized arguments passed to function.
440 …description: Check correctness of passed arguments. Load parameter to accumulator. Check i32 type …
473 …description: Check correctness of passed arguments. Load parameter to accumulator. Check f64 type …
502 …description: Check correctness of passed arguments. Load parameter to register. Check i32 type of …
534 …description: Check correctness of passed arguments. Load parameter to register. Check f64 type of …
563 …description: Check correctness of passed arguments. Load parameter to accumulator. Check i32 type …
613 …description: Check correctness of passed arguments. Load parameter to register. Check i32 type of …
662 …description: Check correctness of passed arguments. Load parameter to accumulator. Check f64 type …
[all …]
Dcall.yaml32 Arguments are passed in source registers in the same order as in method signature.
34 be discarded and corresponding registers will not be passed to the callee).
168 description: Verifier should check usage of uninitialized arguments passed to function.
441 …description: Check correctness of passed arguments. Load parameter to accumulator. Check i32 type …
475 …description: Check correctness of passed arguments. Load parameter to accumulator. Check f64 type …
504 …description: Check correctness of passed arguments. Load parameter to register. Check i32 type of …
536 …description: Check correctness of passed arguments. Load parameter to register. Check f64 type of …
565 …description: Check correctness of passed arguments. Load parameter to accumulator. Check i32 type …
625 …description: Check correctness of passed arguments. Load parameter to register. Check i32 type of …
686 …description: Check correctness of passed arguments. Load parameter to accumulator. Check f64 type …
[all …]
Dcall.range.yaml31 Arguments are passed in source registers in the same order as in method signature.
33 be discarded and corresponding registers will not be passed to the callee).
179 description: Verifier should check usage of uninitialized arguments passed to function.
359 …description: Check correctness of passed arguments. Load parameter to accumulator. Check i32 type …
392 …description: Check correctness of passed arguments. Load parameter to accumulator. Check f64 type …
421 …description: Check correctness of passed arguments. Load parameter to register. Check i32 type of …
453 …description: Check correctness of passed arguments. Load parameter to register. Check f64 type of …
482 …description: Check correctness of passed arguments. Load parameter to accumulator. Check i32 type …
542 …description: Check correctness of passed arguments. Load parameter to register. Check i32 type of …
603 …description: Check correctness of passed arguments. Load parameter to accumulator. Check f64 type …
[all …]
/arkcompiler/runtime_core/tests/cts-generator/
DREADME.md8 * `CTS_TEST_SELECT_OPTION` - options, passed to test-runner.rb.
156 ### What should I do with failed/passed tests after bug-fixing?
164 3. If all test passed, congrats! Now you can enable tests for regular
/arkcompiler/ets_frontend/arkguard/
DOAT.xml35 … "may" policyitems in the same group means any one in this group passed, the result will be passed.
/arkcompiler/ets_runtime/ecmascript/compiler/
Dts_hclass_generator.cpp112 bool passed = false; in RecursiveGenerate() local
114 passed = SubtypingOperator::CheckBaseClass(thread, classType); in RecursiveGenerate()
116 passed = SubtypingOperator::CheckSubtyping(thread, classType); in RecursiveGenerate()
119 classType->SetHasPassedSubtypingCheck(passed); in RecursiveGenerate()
121 if (passed) { in RecursiveGenerate()
/arkcompiler/runtime_core/tests/verifier-tests/
Dbug_2089.pa21 ldai 0 # passed
Dbug_2072.pa24 ldai 0 # passed
Dbug_2256.pa33 ldai 0 # passed
Dissue_1163.pa24 ldai 0 # passed
Dbug_1863.pa31 ldai 0 # passed
/arkcompiler/runtime_core/
DOAT.xml35 … "may" policyitems in the same group means any one in this group passed, the result will be passed.
/arkcompiler/ets_frontend/testTs/
Drun_testTs.py246 print(" Passed tests: %5d " % (count - fail_count))
314 passed = expected == output
316 passed = False
317 if not passed:
/arkcompiler/toolchain/
DOAT.xml43 … "may" policyitems in the same group means any one in this group passed, the result will be passed.
/arkcompiler/runtime_core/tests/cts-assembly/
Denv-01.pa18 # Check that arguments are passed correctly to entry point

12345