/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/test/multiple_config_test/ |
H A D | multiple_config_test.py | 46 yaml = YamlDocument() 47 yaml.load_configs( 48 [os.path.join(self.current_folder, "config-1.yaml")] 50 actual: Optional[Dict[str, Any]] = yaml.document() 73 self.assertListEqual(yaml.warnings(), []) 76 yaml = YamlDocument() 77 yaml.load_configs( 79 os.path.join(self.current_folder, "config-1.yaml"), 80 os.path.join(self.current_folder, "config-2.yaml") 83 actual: Optional[Dict[str, Any]] = yaml [all...] |
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/ |
H A D | decorator_value.py | 48 yaml = ConfigKeeper.get().get_value_by_path(yaml_path) 49 yaml = cast_to_type(yaml) if cast_to_type is not None and yaml is not None else yaml 50 if yaml is not None: 51 return yaml 114 # from yaml: simple list of strings
|
H A D | yaml_document.py | 21 import yaml namespace 39 data: Dict[str, Any] = yaml.safe_load(stream) 41 except yaml.YAMLError as exc: 42 Log.exception_and_raise(_LOGGER, str(exc), yaml.YAMLError) 46 data_to_save = yaml.dump(data, indent=4)
|
/arkcompiler/ets_frontend/ets2panda/public/headers_parser/ |
H A D | file_tools.py | 19 import yaml namespace 25 yaml.dump(data_yaml, file)
|
/arkcompiler/runtime_core/isa/ |
H A D | check_version.py | 18 import yaml namespace 24 isa_file_path = os.path.join(script_dir, 'isa.yaml') 30 data = yaml.safe_load(file)
|
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/ |
H A D | result.py | 20 import yaml namespace 23 with open(r".\config.yaml", 'r') as f: 24 data = yaml.safe_load(f.read())
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ |
H A D | ets_utils.py | 21 import yaml namespace 32 TEST_GENERATOR_REPORT = "test_generator_report.yaml" 51 yaml.dump(report_obj, file_handle)
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/utils/ |
H A D | test_parameters.py | 19 # that are used in templates (yaml lists). 24 import yaml namespace 57 params = yaml.safe_load(text)
|
H A D | metainformation.py | 25 import yaml namespace 85 data = yaml.safe_load(yaml_string)
|
/arkcompiler/ets_frontend/test/scripts/utils/flash_image/ |
H A D | burn_image.py | 26 import yaml namespace 36 config_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '../config.yaml') 38 data = yaml.safe_load(config_file.read())
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/ |
H A D | spec_report.py | 23 import yaml namespace 45 SPEC_CONFIG_FILE = "arkts-spec-config.yaml" 64 str(yaml_report) if yaml_report else path.join(report_path, f"{test_suite}_spec-report.yaml") 72 self.config: Dict = yaml.safe_load(data) 83 def obj_to_dict(dumper: yaml.SafeDumper, data: SpecNode) -> Any: 151 yaml.SafeDumper.add_representer(SpecNode, SpecReport.obj_to_dict) 153 yaml.safe_dump(res, file, default_flow_style=False, sort_keys=False)
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ets_templates/ |
H A D | template.py | 22 import yaml namespace 77 yaml_content = yaml.dump(meta.config) 107 result: Dict[str, Any] = yaml.safe_load(text)
|
H A D | test_metadata.py | 25 import yaml namespace 93 metadata = yaml.safe_load(yaml_text)
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/compiler_verification/ |
H A D | expression_verifier.py | 23 import yaml namespace 48 metadata = yaml.safe_load(yaml_text)
|
/arkcompiler/ets_frontend/test/scripts/utils/send_email/ |
H A D | send_email.py | 23 import yaml namespace 58 with open(r"../config.yaml", 'r') as f: 59 data = yaml.safe_load(f.read())
|
/arkcompiler/ets_frontend/test/scripts/utils/commit_message/ |
H A D | get_commit_message.py | 28 import yaml namespace 35 config_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '../config.yaml') 37 configs = yaml.safe_load(config_file)
|
/arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/ |
H A D | update.py | 26 import yaml namespace 30 config_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '../config.yaml') 32 configs = yaml.safe_load(config_file)
|
H A D | download.py | 36 import yaml namespace 49 config_file_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '../config.yaml') 51 configs = yaml.safe_load(config_file)
|
/arkcompiler/runtime_core/static_core/compiler/tools/ |
H A D | ir_builder_coverage.sh | 37 ISA=$PANDA_BINARY_ROOT/isa/isa.yaml
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
H A D | options.py | 26 import yaml namespace 124 help='specify sdk path if need to update sdk. Default to use sdk specify in config.yaml') 155 config_yaml = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'config.yaml') 158 configs = yaml.safe_load(config_file)
|
/arkcompiler/runtime_core/static_core/scripts/intrusive-testing/ |
H A D | intrusive_instrumentator.py | 27 import yaml namespace 314 self.__obj = yaml.safe_load(f) 705 except yaml.YAMLError as yaml_err:
|