Searched refs:testargs (Results 1 - 16 of 16) sorted by relevance
/test/testfwk/developer_test/src/core/driver/ |
H A D | openharmony.py | 304 self.config.testargs.get("test"): 305 self._do_test_retry(request.listeners, self.config.testargs) 312 oh_jsunit_para_parse(self.runner, self.config.testargs) 429 if "all-test-file-exclude-filter" in self.config.testargs: 430 json_file_list = self.config.testargs.get( 432 self.config.testargs.pop("all-test-file-exclude-filter") 451 if not isinstance(self.config.testargs, dict): 453 if 'notClass' in self.config.testargs.keys(): 454 filter_list.extend(self.config.testargs.get('notClass', [])) 455 self.config.testargs [all...] |
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
H A D | ltp_posix_driver.py | 125 self.config.testargs.get("test"): 126 self._do_test_retry(request, self.config.testargs) 133 def _do_test_retry(self, request, testargs): 135 for test in testargs.get("test"):
|
H A D | oh_jsunit_driver.py | 198 oh_jsunit_para_parse(self.runner, self.config.testargs) 227 self.config.testargs.get("test"): 228 self._do_test_retry(request.listeners, self.config.testargs) 235 oh_jsunit_para_parse(self.runner, self.config.testargs) 365 if "all-test-file-exclude-filter" in self.config.testargs: 366 json_file_list = self.config.testargs.get( 368 self.config.testargs.pop("all-test-file-exclude-filter") 387 if not isinstance(self.config.testargs, dict): 389 if 'notClass' in self.config.testargs.keys(): 390 filter_list.extend(self.config.testargs [all...] |
H A D | cpp_driver.py | 134 self.config.testargs.get("test"): 135 self._do_test_retry(listeners, self.config.testargs) 137 gtest_para_parse(self.config.testargs, self.runner, request) 143 def _do_test_retry(self, listener, testargs): 144 for test in testargs.get("test"):
|
H A D | jsunit_driver.py | 170 self.config.testargs.get("test"): 174 if test not in self.config.testargs.get("test"): 441 if "all-test-file-exclude-filter" in self.config.testargs: 442 json_file_list = self.config.testargs.get( 444 self.config.testargs.pop("all-test-file-exclude-filter")
|
H A D | cpp_driver_lite.py | 118 if request.config.testargs.get("dry_run"): 119 self.config.dry_run = request.config.testargs.get( 263 if request.config.testargs.get("test"): 265 request.config.testargs.get("test"))
|
H A D | constants.py | 38 xml_output = config.testargs.get("xml-output")
|
/test/testfwk/xdevice/src/xdevice/_core/command/ |
H A D | console.py | 221 parser.add_argument("-ta", "--testargs", 225 dest=ConfigConst.testargs, 361 "following the -ta or --testargs parameter") 416 if options.testargs: 418 test_args = str(options.testargs).encode("utf-8").decode('unicode_escape') 419 setattr(options, ConfigConst.testargs, test_args) 421 test_args = self._parse_combination_param(options.testargs) 422 setattr(options, ConfigConst.testargs, test_args) 424 setattr(options, ConfigConst.testargs, { 425 ConfigConst.pass_through: options.testargs}) [all...] |
/test/testfwk/developer_test/src/core/command/ |
H A D | console.py | 87 if options.testargs:
88 test_args = self._parse_combination_param(options.testargs)
89 setattr(options, ConfigConst.testargs, test_args)
177 parser.add_argument("-ta", "--testargs",
181 dest=ConfigConst.testargs,
477 testargs = "testargs"
variable in ConfigConst
|
H A D | run.py | 209 LOG.info("testargs = %s" % options.testargs)
281 setattr(options, "testargs", test_targets)
|
/test/testfwk/xdevice/plugins/devicetest/runner/ |
H A D | test_runner.py | 106 testargs:为xDevice透传过来的数据,用户调用CONFIG可获取 111 testargs = self.configs.get("testargs", {}) 112 self.__flash_run_list(testargs) 130 def __flash_run_list(self, testargs): 133 :param testargs: 136 get_test = testargs.get("test")
|
/test/testfwk/xdevice/plugins/devicetest/driver/ |
H A D | device_test.py | 221 configs["testargs"] = self.config.testargs or {} 379 configs["testargs"] = self.config.testargs or {}
|
H A D | windows.py | 160 configs["testargs"] = self.config.testargs or {}
|
/test/testfwk/xdevice/src/xdevice/_core/ |
H A D | constants.py | 280 testargs = "testargs" variable in ConfigConst
|
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
H A D | scheduler.py | 511 getattr(config, ConfigConst.testargs, None): 692 driver_request.config.get(ConfigConst.testargs, dict()))
|
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | test_case.py | 585 self.pass_through = self.configs.get(ConfigConst.testargs, {}).get(ConfigConst.pass_through, {})
|
Completed in 24 milliseconds