Home
last modified time | relevance | path

Searched refs:test_params (Results 1 – 8 of 8) sorted by relevance

/tools/test/connectivity/acts/tests/google/wifi/
DWifiRssiTest.py74 self.test_params = self.rssi_test_params
107 stdev > self.test_params["stdev_tolerance"]
116 ], self.test_params["stdev_tolerance"], [
176 rssi_failure = (avg_error > self.test_params["abs_tolerance"]
364 self.test_params["polling_frequency"] * x
468 self.dut.droid.wifiSetCountryCode(self.test_params["country_code"])
543 test_params = self.current_test_name.split("_")
544 self.channel = int(test_params[4][2:])
545 self.mode = test_params[5]
546 self.iperf_traffic = "ActiveTraffic" in test_params[6]
[all …]
DWifiSoftApPerformanceTest.py55 num_atten_steps = int((self.test_params["rvr_atten_stop"] -
56 self.test_params["rvr_atten_start"]) /
57 self.test_params["rvr_atten_step"])
59 self.test_params["rvr_atten_start"] +
60 x * self.test_params["rvr_atten_step"]
86 self.test_params["iperf_server_address"] = connection_info[
91 rvr_result["fixed_attenuation"] = self.test_params[
104 test_params = self.current_test_name.split("_")
105 self.sap_band = test_params[4]
111 self.test_params["iperf_duration"])
[all …]
DWifiThroughputStabilityTest.py72 self.test_params = self.throughput_stability_test_params
115 100) > self.test_params["min_throughput_threshold"]
116 std_deviation_check = std_dev_percent < self.test_params["std_deviation_threshold"]
153 self.test_params["iperf_ignored_interval"]:-1]
165 self.test_params["iperf_ignored_interval"]) * 8,
229 self.dut.droid.wifiSetCountryCode(self.test_params["country_code"])
248 self.test_params["iperf_duration"] + TEST_TIMEOUT)
291 x < self.test_params["low_rssi_backoff_from_range"]
313 test_params = self.current_test_name.split("_")
314 channel = int(test_params[6][2:])
[all …]
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
DCoexPerformanceBaseTest.py83 os.path.join(self.test_params["performance_result_path"],
85 self.test_params["performance_result_path"])
88 self.test_params["bt_atten_start"],
89 self.test_params["bt_atten_stop"],
90 self.test_params["bt_atten_step"])
92 self.test_params["attenuation_start"],
93 self.test_params["attenuation_stop"],
94 self.test_params["attenuation_step"])
142 self.test_params["fixed_attenuation"][str(self.network["channel"])])
349 if "fixed_attenuation" in self.test_params:
[all …]
Daudio_capture.py33 def __init__(self, test_params, path): argument
42 self.audio_params = test_params
152 audio = AudioCapture(args.test_params, args.path)
153 audio.capture_and_store_audio(args.test_params['trim_beginning'],
154 args.test_params['trim_end'])
Daudio_test_utils.py41 def __init__(self, test_params, path): argument
42 super(SshAudioCapture, self).__init__(test_params, path)
69 test_params = str(self.audio_params).replace("\'", "\"")
71 path, test_params)
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
DBtRangeBaseTest.py68 self.bt_attenuation_range = range(self.test_params["bt_atten_start"],
69 self.test_params["bt_atten_stop"],
70 self.test_params["bt_atten_step"])
/tools/test/connectivity/acts/framework/acts/test_utils/power/
DPowerBaseTest.py203 test_params = self.current_test_name.split('_')
204 values = [test_params[x] for x in indices]