Searched refs:testcase_params (Results 1 – 5 of 5) sorted by relevance
/tools/test/connectivity/acts/tests/google/wifi/ |
D | WifiSensitivityTest.py | 174 testcase_params = self.parse_test_params(result["test_name"]) 176 "Channel": testcase_params["channel"], 177 "Mode": testcase_params["mode"], 178 "MCS": testcase_params["rate"], 179 "Streams": testcase_params["num_streams"], 180 "Chain": testcase_params["chain_mask"], 189 def process_rvr_test_results(self, testcase_params, rvr_result): argument 217 testcase_params["channel"])] - rvr_result["range"]) 220 def process_ping_test_results(self, testcase_params, ping_result): argument 232 testcase_params[ [all …]
|
D | WifiPingTest.py | 193 def process_ping_results(self, testcase_params, ping_range_result): argument 205 x > testcase_params["range_ping_loss_threshold"] 214 ping_range_result["atten_at_range"] = testcase_params["atten_range"][ 286 def run_ping_test(self, testcase_params): argument 301 test_result["attenuation"] = testcase_params["atten_range"] 303 "fixed_attenuation"][str(testcase_params["channel"])] 308 for atten in testcase_params["atten_range"]: 313 int(testcase_params["ping_duration"] / 2 / 315 testcase_params["ping_duration"] / 2) 318 testcase_params["ping_duration"], [all …]
|
D | WifiRoamingPerformanceTest.py | 135 def process_traffic_continuity_results(self, testcase_params, result): argument 152 testcase_params, result, output_file_path=plot_file_path) 156 testcase_params, result, output_file_path=plot_file_path) 163 def process_consistency_results(self, testcase_params, results_dict): argument 199 plot_result(testcase_params, result, figure=figure) 325 testcase_params, argument 359 testcase_params, argument 393 def setup_ap(self, testcase_params): argument 408 def setup_dut(self, testcase_params): argument 428 if testcase_params['screen_on']: [all …]
|
D | WifiRvrTest.py | 103 testcase_params = self.parse_test_params(result["test_name"]) 104 plot_id = (testcase_params["channel"], testcase_params["mode"]) 282 def run_rvr_test(self, testcase_params): argument 298 for atten in testcase_params["atten_range"]: 305 self.client_dut, testcase_params["iperf_duration"] - 1, 1, 1) 307 testcase_params["iperf_server_address"], 308 testcase_params["iperf_args"], str(atten), 309 testcase_params["iperf_duration"] + self.TEST_TIMEOUT) 314 if testcase_params["use_client_output"]: 341 (len(testcase_params["atten_range"]) - len(throughput))) [all …]
|
D | WifiOtaTest.py | 54 def setup_rvr_test(self, testcase_params): argument 61 self.ota_chamber.set_orientation(testcase_params['orientation']) 63 WifiRvrTest.setup_rvr_test(self, testcase_params) 68 testcase_params = WifiRvrTest.parse_test_params(self, test_name) 71 testcase_params['orientation'] = int(test_name_params[6][0:-3]) 72 return testcase_params 184 def setup_ping_test(self, testcase_params): argument 191 self.setup_ap(testcase_params) 196 self.ota_chamber.set_orientation(testcase_params['orientation']) 198 self.setup_dut(testcase_params) [all …]
|