HomeSort by relevance Sort by last modified time
    Searched refs:sim_conf_file (Results 1 - 11 of 11) sorted by null

  /tools/test/connectivity/acts/tests/google/bt/pts/
BtCmdLineTest.py 22 'sim_conf_file' : '/path_to_config/'
49 if not "sim_conf_file" in self.user_params.keys():
51 "Missing mandatory user config \"sim_conf_file\"!")
53 sim_conf_file = self.user_params["sim_conf_file"][0]
54 # If the sim_conf_file is not a full path, attempt to find it
56 if not os.path.isfile(sim_conf_file):
57 sim_conf_file = os.path.join(
58 self.user_params[Config.key_config_path], sim_conf_file)
59 if not os.path.isfile(sim_conf_file)
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
BluetoothCarHfpBaseTest.py 60 if not "sim_conf_file" in self.user_params.keys():
61 self.log.error("Missing mandatory user config \"sim_conf_file\"!")
63 sim_conf_file = self.user_params["sim_conf_file"][0]
64 if not os.path.isfile(sim_conf_file):
65 sim_conf_file = os.path.join(
66 self.user_params[Config.key_config_path], sim_conf_file)
67 if not os.path.isfile(sim_conf_file):
68 self.log.error("Unable to load user config " + sim_conf_file +
71 setup_droid_properties(self.log, self.ag, sim_conf_file)
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/tel/
TelephonyBaseTest.py 170 sim_conf_file = self.user_params.get("sim_conf_file")
171 if not sim_conf_file:
172 self.log.info("\"sim_conf_file\" is not provided test bed config!")
174 if isinstance(sim_conf_file, list):
175 sim_conf_file = sim_conf_file[0]
176 # If the sim_conf_file is not a full path, attempt to find it
178 if not os.path.isfile(sim_conf_file):
179 sim_conf_file = os.path.join
    [all...]
  /tools/test/connectivity/acts/tests/google/coex/functionality_tests/
CoexBtMultiProfileFunctionalityTest.py 35 req_params = ["sim_conf_file", "music_play_time"]
38 self.pri_ad, self.sec_ad, self.sim_conf_file)
WlanWithHfpFunctionalityTest.py 43 req_params = ["sim_conf_file"]
46 self.pri_ad, self.sec_ad, self.sim_conf_file)
  /tools/test/connectivity/acts/tests/google/coex/performance_tests/
CoexBtMultiProfilePerformanceTest.py 40 req_params = ["sim_conf_file", "music_play_time"]
43 self.pri_ad, self.sec_ad, self.sim_conf_file)
WlanWithHfpPerformanceTest.py 37 req_params = ["sim_conf_file"]
40 self.pri_ad, self.sec_ad, self.sim_conf_file)
  /tools/test/connectivity/acts/tests/google/coex/slave_role/performance_tests/
CoexBtMultiProfilePerformanceSlaveTest.py 34 req_params = ["sim_conf_file"]
37 self.pri_ad, self.sec_ad, self.sim_conf_file)
WlanWithHFPPerformanceSlaveTest.py 36 req_params = ["sim_conf_file"]
39 self.pri_ad, self.sec_ad, self.sim_conf_file)
  /tools/test/connectivity/acts/tests/google/tel/config/
README.md 6 - **sim_conf_file** - Path to a SIM card config file, which is needed in the event that the MSISDN/MDN is not programmed onto SIM cards used in a defined testbed. The file provides key/value pairs mapping ICCIDs to MSISDNs. This file can be generated and amended by the 'manage_sim.py' utility. Its contents are subject to change so users are highly encouraged to use manage_sim.py.
  /tools/test/connectivity/acts/framework/acts/test_utils/coex/
coex_test_utils.py 762 def setup_tel_config(pri_ad, sec_ad, sim_conf_file):
768 sim_conf_file: Sim card map.
774 setup_droid_properties(logging, pri_ad, sim_conf_file)
776 setup_droid_properties(logging, sec_ad, sim_conf_file)

Completed in 119 milliseconds