Searched refs:rvr_result (Results 1 – 3 of 3) sorted by relevance
/tools/test/connectivity/acts/tests/google/wifi/ |
D | WifiRvrTest.py | 140 def pass_fail_check(self, rvr_result): argument 151 throughput_limits = self.compute_throughput_limits(rvr_result) 157 rvr_result['throughput_receive']): 164 rvr_result['metrics']['failure_count'] = failure_count 177 def compute_throughput_limits(self, rvr_result): argument 203 rvr_result['throughput_receive']): 204 current_att = rvr_result['attenuation'][idx] + rvr_result[ 236 def process_test_results(self, rvr_result): argument 248 json.dump(rvr_result, results_file, indent=4) 263 throughput_limits = self.compute_throughput_limits(rvr_result) [all …]
|
D | WifiRvrTwTest.py | 290 def post_process_results(self, rvr_result): argument 298 data=(rvr_result["test_name"],rvr_result["test_angle"],rvr_result["test_dB"], 299 rvr_result["throughput_TX"][0],rvr_result["throughput_RX"][0], 300 rvr_result["test_RSSI"],rvr_result["test_LS"],rvr_result["test_FR"]) 307 json.dump(rvr_result, results_file, indent=4) 331 rvr_result = [] 363 rvr_result.append(curr_throughput) 369 return rvr_result 380 rvr_result = [] 412 rvr_result.append(curr_throughput) [all …]
|
D | WifiSensitivityTest.py | 284 def process_rvr_test_results(self, testcase_params, rvr_result): argument 296 rvr_result['peak_throughput'] = max(rvr_result['throughput_receive']) 297 rvr_result['peak_throughput_pct'] = 100 299 throughput < rvr_result['peak_throughput'] * 301 for throughput in rvr_result['throughput_receive'] 307 rvr_result['atten_at_range'] = rvr_result['attenuation'][ 309 rvr_result['range'] = rvr_result['fixed_attenuation'] + ( 310 rvr_result['atten_at_range']) 311 rvr_result['sensitivity'] = self.testclass_params['ap_tx_power'] + ( 313 testcase_params['channel'])] - rvr_result['range']) [all …]
|