Searched refs:return_code (Results 1 – 11 of 11) sorted by relevance
| /arkcompiler/ets_frontend/es2panda/test/ |
| D | test262util.py | 57 return_code = subprocess.call(cmd) 59 if return_code: 66 return_code = subprocess.call( 69 if return_code: 156 def validate_parse_result(return_code, std_err, desc, out): argument 159 if return_code == 0: # passed 165 if return_code == 1: # failed 170 def validate_runtime_result(self, return_code, std_err, desc, out): argument 174 if return_code == 0: # passed 183 if return_code == 1: # failed
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/ |
| D | test_js_hermes.py | 83 def _validate_compiler(return_code: int, output_path: str) -> bool: 84 return return_code == 0 and path.exists(output_path) and path.getsize(output_path) > 0 86 def ark_validate_result(self, actual_output: str, _: Any, return_code: int) -> bool: 87 return self.util.run_filecheck(self.path, actual_output) and return_code == 0
|
| D | util_hermes.py | 112 return_code = process.returncode 116 return_code = -1 119 return_code = -1 121 return return_code == 0
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/ |
| D | util_test262.py | 132 …def validate_parse_result(return_code: int, _: str, desc: Dict[str, Any], out: str) -> Tuple[bool,… 135 if return_code == 0: # passed 141 if return_code == 1: # failed 146 …def validate_runtime_result(self, return_code: int, std_err: str, desc: Dict[str, Any], out: str) … 150 if return_code == 0: # passed 159 if return_code == 1: # failed
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/ |
| D | test_file_based.py | 90 return_code = process.returncode 91 passed = result_validator(output, error, return_code) 98 return_code = process.returncode 104 return_code = -1 112 return_code=return_code
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ |
| D | test_ets.py | 189 def _runtime_result_validator(self, return_code: int) -> bool: 194 return return_code != 0 196 return return_code == 0 223 def _validate_compiler(self, return_code: int, output_path: str) -> bool: 225 return return_code != 0 226 return return_code == 0 and path.exists(output_path) and path.getsize(output_path) > 0
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/enum_types/ |
| D | params.py | 85 return_code: int
|
| /arkcompiler/ets_runtime/test/ |
| D | run_ts_test262.py | 127 return_code = process.returncode 128 if return_code != 0:
|
| /arkcompiler/ets_runtime/test/workloadtest/ |
| D | work_load.py | 126 return_code = process.returncode 127 if return_code != 0:
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/ |
| D | report.py | 127 report = report.replace(REPORT_RETURN_CODE, str(actual_report.return_code)) 196 report = report.replace(REPORT_RETURN_CODE, str(actual_report.return_code))
|
| /arkcompiler/ets_frontend/test262/ |
| D | run_sunspider.py | 629 return_code = exec_command(cmd_args) 630 if return_code: 632 return return_code
|