Home
last modified time | relevance | path

Searched refs:rvr_result (Results 1 – 5 of 5) sorted by relevance

/tools/test/connectivity/acts_tests/tests/google/wifi/
DWifiRvrTest.py140 def pass_fail_check(self, rvr_result): argument
151 throughput_limits = self.compute_throughput_limits(rvr_result)
158 rvr_result['throughput_receive']):
165 rvr_result['metrics']['failure_count'] = failure_count
178 def compute_throughput_limits(self, rvr_result): argument
204 rvr_result['throughput_receive']):
205 current_att = rvr_result['attenuation'][idx] + rvr_result[
237 def plot_rvr_result(self, rvr_result): argument
249 json.dump(rvr_result, results_file, indent=4)
264 throughput_limits = self.compute_throughput_limits(rvr_result)
[all …]
DWifiRvrTwTest.py290 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 …]
DWifiSensitivityTest.py284 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 …]
/tools/test/connectivity/acts_tests/tests/google/wifi/aware/performance/
DWifiAwareRvrTest.py145 def compute_test_metrics(self, rvr_result): argument
147 rvr_result['metrics'] = {}
148 rvr_result['metrics']['peak_tput'] = max(
149 rvr_result['throughput_receive'])
152 'peak_tput', rvr_result['metrics']['peak_tput'])
154 test_mode = rvr_result['testcase_params']['mode']
158 for tput in rvr_result['throughput_receive']
160 rvr_result['metrics']['high_tput_range'] = -1
165 rvr_result['metrics']['high_tput_range'] = -1
167 rvr_result['metrics']['high_tput_range'] = rvr_result[
[all …]
/tools/test/connectivity/acts_tests/tests/google/wifi/p2p/performance/
DWifiP2pRvrTest.py162 def compute_test_metrics(self, rvr_result): argument
164 rvr_result['metrics'] = {}
165 rvr_result['metrics']['peak_tput'] = max(
166 rvr_result['throughput_receive'])
169 'peak_tput', rvr_result['metrics']['peak_tput'])
171 test_mode = rvr_result['testcase_params']['mode']
175 for tput in rvr_result['throughput_receive']
177 rvr_result['metrics']['high_tput_range'] = -1
182 rvr_result['metrics']['high_tput_range'] = -1
184 rvr_result['metrics']['high_tput_range'] = rvr_result[
[all …]