Searched refs:configs (Results 1 - 10 of 10) sorted by relevance
/test/testfwk/xdevice/plugins/devicetest/driver/ |
H A D | device_test.py | 121 # set configs keys 122 configs = driver_obj._set_configs(json_config, kits, request) 131 driver_obj._run(configs, test_list) 220 configs = dict() 221 configs["testargs"] = self.config.testargs or {} 222 configs["testcases_path"] = self.config.testcases_path or "" 223 configs["request"] = request 224 configs["test_name"] = request.get_module_name() 225 configs["report_path"] = request.config.report_path 226 configs["execut [all...] |
H A D | windows.py | 98 # set configs keys 99 configs = self._set_configs(json_config, kits, request) 105 self._run_devicetest(configs, test_list) 159 configs = dict() 160 configs["testargs"] = self.config.testargs or {} 161 configs["testcases_path"] = self.config.testcases_path or "" 162 configs["request"] = request 163 configs["test_name"] = request.get_module_name() 164 configs["report_path"] = request.config.report_path 165 configs["execut [all...] |
/test/testfwk/xdevice/plugins/devicetest/runner/ |
H A D | test_runner.py | 70 self.configs = None 82 def init_pipeline_runner(self, run_list, configs, devices, upload_result_handler): 86 self.configs = configs 95 self._repeat = self.configs.get("request").config.repeat 96 self._repeat_round = self.configs.get("request").get_repeat_round() 109 self.log.debug("configs:{}".format(self.configs)) 110 testcases_path = self.configs.get('testcases_path', "") 111 testargs = self.configs [all...] |
H A D | prepare.py | 33 def __init__(self, log, cur_case, project, configs, devices, run_list): 37 self.configs = configs 163 with test_cls(self.configs) as test_instance:
|
/test/testfwk/xdevice/plugins/devicetest/core/suite/ |
H A D | test_suite.py | 58 def __init__(self, configs, path): 59 self.configs = configs 65 self.set_devices(self.configs["devices"]) 67 self.log = self.configs["log"] 72 self.suite_name = self.configs.get("suite_name") 80 self._test_args_para_parse(self.configs["testargs"]) 97 self._repeat = self.configs.get("request").config.repeat 98 self._repeat_round = self.configs.get("request").get_repeat_round() 171 environment = self.configs [all...] |
/test/testfwk/xdevice/plugins/devicetest/ |
H A D | main.py | 31 def __init__(self, test_list, configs, devices, result_file): 34 self.configs = configs or {} 43 self.test_list, self.configs, self.devices, self.upload_result_handler) 59 def __init__(self, test_list, configs, devices): 61 self.configs = configs or {} 66 test_runner = TestSuiteRunner(self.test_list, self.configs, self.devices)
|
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | test_case.py | 96 def __init__(self, tag, configs): 99 self.configs = configs 107 self.log = self.configs["log"] 108 self.set_project(self.configs["project"]) 529 request = self.configs.get("request", None) 577 self.configs = controllers 578 self.configs.setdefault("report_path", EnvPool.report_path) 585 self.pass_through = self.configs.get(ConfigConst.testargs, {}).get(ConfigConst.pass_through, {}) 631 def __init__(self, tag, configs) [all...] |
H A D | report.py | 54 test_name = test_runner.configs.get("test_name")
|
H A D | variables.py | 354 configs = {} # VAR.Event.Configs variable in Event
|
/test/xts/acts/arkui/ace_ets_xcomponent/entry/src/main/cpp/render/ |
H A D | egl_core.cpp | 35 EGLConfig configs = NULL; in getConfig() local 37 if (!eglChooseConfig(eglDisplay, attribList, &configs, 1, &configsNum)) { in getConfig() 41 return configs; in getConfig()
|
Completed in 7 milliseconds