Searched refs:test_configs (Results 1 – 15 of 15) sorted by relevance
/tools/test/connectivity/acts_tests/tests/google/power/wifi/ |
D | PowerWiFiscanTest.py | 54 self.log.info('Trigger {} scans'.format(self.test_configs.scan_mode)) 55 if self.test_configs.scan_type == 'apk': 56 atten_setting = self.test_configs.wifi_band + '_' + self.test_configs.rssi 59 self.APK_SCAN_CMDS[self.test_configs.scan_mode]) 62 if self.test_configs.scan_mode == 'pno': 65 elif self.test_configs.scan_mode == 'connectivity': 70 elif self.test_configs.scan_mode == 'roaming': 71 atten_setting = self.test_configs.wifi_band + '_roaming' 82 if self.test_configs.wifi_status == 'Disconnected': 84 self.main_network[self.test_configs.wifi_band], connect=False) [all …]
|
D | PowerWiFitrafficTest.py | 40 atten_setting = self.test_configs.band + '_' + self.test_configs.signal_level 45 network=self.main_network[self.test_configs.band], 46 bandwidth=int(self.test_configs.bandwidth)) 53 if self.test_configs.screen_status == 'OFF': 72 if self.test_configs.traffic_type == "UDP": 74 if self.test_configs.traffic_direction == "DL":
|
D | PowerWiFiHotspotTest.py | 111 if self.test_configs.band == self.PARAM_2G_BAND: 113 elif self.test_configs.band == self.PARAM_5G_BAND: 129 if self.test_configs.wifi_sharing == 'OFF': 134 self.main_network[self.test_configs.wifi_sharing]) 155 if self.test_configs.screen_status == 'OFF': 183 client_connect = self.test_configs.client_connect == 'true' 211 'traffic_type': self.test_configs.traffic_type, 215 'traffic_direction': self.test_configs.traffic_direction,
|
D | PowerWiFidtimTest.py | 51 gEnableModulatedDTIM=int(self.test_configs.dtim), 56 self.test_configs.dtim)) 57 self.setup_ap_connection(self.main_network[self.test_configs.wifi_band]) 63 gEnableModulatedDTIM=int(self.test_configs.dtim)) 65 if self.test_configs.screen_status == 'OFF':
|
D | PowerWiFibaselineTest.py | 38 if self.test_configs.wifi_status == 'ON': 40 if self.test_configs.screen_status == 'OFF':
|
D | PowerWiFimulticastTest.py | 79 self.main_network[self.test_configs.wifi_band]) 88 if self.test_configs.screen_status == 'OFF':
|
/tools/test/connectivity/acts_tests/tests/google/power/coex/ |
D | PowerCoexbaselineTest.py | 37 self.test_configs.screen_status, self.test_configs.wifi_status, 38 self.test_configs.wifi_band, self.test_configs.bt_status, 39 self.test_configs.ble_status, self.test_configs.cellular_status, 40 self.test_configs.cellular_band)
|
D | PowerCoexscanTest.py | 51 if self.test_configs.ble_scan_mode == 'lowpower': 53 elif self.test_configs.ble_scan_mode == 'lowlatency': 56 ble_scan_mode = self.test_configs.ble_scan_mode 57 self.phone_setup_for_BT(self.test_configs.bt_status, 58 self.test_configs.ble_status, 59 self.test_configs.screen_status) 60 self.coex_scan_setup(self.test_configs.wifi_scan, ble_scan_mode,
|
/tools/asuite/atest/test_finders/ |
D | module_finder.py | 284 test_configs = [] 289 test_configs = test_finder_utils.extract_test_from_tests( 292 test_configs = test_config_list 293 if test_configs: 294 return test_configs 297 and len(test_configs) > 0): 298 return test_configs 481 test_configs = self._get_module_test_config(module_name) 482 if not test_configs: 485 for test_config in test_configs: [all …]
|
D | test_finder_utils.py | 1361 test_configs = mod_info.get(constants.MODULE_TEST_CONFIG, []) 1362 if len(test_configs) == 0: 1369 if len(test_configs) >= 1: 1370 test_config = test_configs[0] 1376 test_configs = info.get(constants.MODULE_TEST_CONFIG, []) 1377 for test_config in test_configs:
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/cellular/ |
D | cellular_base_test.py | 68 self.test_configs = {} 120 self.test_configs = config_file.get(self.TAG) 121 if not self.test_configs: 125 self.log.debug(self.test_configs) 241 sim_params = self.test_configs.get(self.test_name) 253 for key, val in self.test_configs.items():
|
/tools/test/connectivity/acts/framework/acts/ |
D | test_runner.py | 111 def __init__(self, test_configs, run_list): argument 112 self.test_run_config = test_configs
|
/tools/asuite/atest/bazel/rules/ |
D | tradefed_test_info.bzl | 21 "test_configs": "Tradefed config files",
|
D | tradefed_test_aspects.bzl | 44 test_configs = test_config_files,
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/power/ |
D | PowerBaseTest.py | 328 self.test_configs = ObjNew(**config_dict)
|