OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sim_conf_file
(Results
1 - 4
of
4
) sorted by null
/tools/test/connectivity/acts/tests/google/bt/pts/
BtCmdLineTest.py
22
'
sim_conf_file
' : '/path_to_config/'
46
if not "
sim_conf_file
" in self.user_params.keys():
48
"Missing mandatory user config \"
sim_conf_file
\"!")
50
sim_conf_file
= self.user_params["
sim_conf_file
"]
51
# If the
sim_conf_file
is not a full path, attempt to find it
53
if not os.path.isfile(
sim_conf_file
):
54
sim_conf_file
= os.path.join(
55
self.user_params[Config.key_config_path],
sim_conf_file
)
56
if not os.path.isfile(
sim_conf_file
)
[
all
...]
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
BluetoothCarHfpBaseTest.py
59
if not "
sim_conf_file
" in self.user_params.keys():
60
self.log.error("Missing mandatory user config \"
sim_conf_file
\"!")
62
sim_conf_file
= self.user_params["
sim_conf_file
"]
63
if not os.path.isfile(
sim_conf_file
):
64
sim_conf_file
= os.path.join(
65
self.user_params[Config.key_config_path],
sim_conf_file
)
66
if not os.path.isfile(
sim_conf_file
):
67
self.log.error("Unable to load user config " +
sim_conf_file
+
70
setup_droid_properties(self.log, self.ag,
sim_conf_file
)
[
all
...]
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
TelephonyBaseTest.py
160
sim_conf_file
= self.user_params.get("
sim_conf_file
")
161
if not
sim_conf_file
:
162
self.log.info("\"
sim_conf_file
\" is not provided test bed config!")
164
# If the
sim_conf_file
is not a full path, attempt to find it
166
if not os.path.isfile(
sim_conf_file
):
167
sim_conf_file
= os.path.join(
168
self.user_params[Config.key_config_path],
sim_conf_file
)
169
if not os.path.isfile(
sim_conf_file
):
171
sim_conf_file
)
[
all
...]
/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.
Completed in 569 milliseconds