Home
last modified time | relevance | path

Searched refs:exe_cmd (Results 1 – 21 of 21) sorted by relevance

/tools/tradefederation/core/atest/test_runners/
Dsuite_plan_test_runner_unittest.py55 exe_cmd = suite_plan_test_runner.SuitePlanTestRunner.EXECUTABLE % suite_name
57 exe=exe_cmd,
69 exe=exe_cmd,
88 exe_cmd = suite_plan_test_runner.SuitePlanTestRunner.EXECUTABLE % suite
90 exe=exe_cmd,
102 exe=exe_cmd,
/tools/asuite/atest/test_runners/
Dsuite_plan_test_runner_unittest.py59 exe_cmd = suite_plan_test_runner.SuitePlanTestRunner.EXECUTABLE % suite_name
61 exe=exe_cmd,
73 exe=exe_cmd,
92 exe_cmd = suite_plan_test_runner.SuitePlanTestRunner.EXECUTABLE % suite
94 exe=exe_cmd,
106 exe=exe_cmd,
/tools/test/connectivity/acts/framework/acts/controllers/
Darduino_wifi_dongle.py165 serial_ports = utils.exe_cmd(cmd).decode('utf-8', 'ignore').split('\n')
171 udev_output = utils.exe_cmd(cmd).decode('utf-8', 'ignore')
221 utils.exe_cmd('cp %s %s' % (file_path, tmp_file))
226 utils.exe_cmd(sed_cmd)
228 utils.exe_cmd(sed_cmd)
/tools/test/connectivity/acts_tests/tests/google/tel/live/
DTelLiveNoQXDMLogTest.py27 from acts.utils import exe_cmd
415 exe_cmd("tar -xvf %s" %
659 exe_cmd("adb -s %s shell %s" % (ad.serial,CARRIER_ID_METADATA_URL))
661 exe_cmd("adb -s %s shell %s" % (ad.serial,CARRIER_ID_CONTENT_URL))
721 exe_cmd("adb -s %s shell %s" % (ad.serial,CARRIER_ID_METADATA_URL))
723 exe_cmd("adb -s %s shell %s" % (ad.serial,CARRIER_ID_CONTENT_URL))
/tools/test/connectivity/acts/framework/acts/controllers/sniffer_lib/local/
Dlocal_base.py57 utils.exe_cmd("ifconfig", self._interface, "down")
58 utils.exe_cmd("iwconfig", self._interface, "mode", "monitor")
59 utils.exe_cmd("ifconfig", self._interface, "up")
90 utils.exe_cmd("iwconfig", self._interface, "channel",
/tools/test/connectivity/acts/framework/acts/test_utils/net/
Darduino_test_utils.py47 file_path = utils.exe_cmd(cmd).decode("utf-8", "ignore").split()[-1]
68 file_path = utils.exe_cmd(cmd).decode("utf-8", "ignore").rstrip()
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
DBtFunhausBaseTest.py23 from acts.utils import exe_cmd
151 exe_cmd(cmd)
Dbt_test_utils.py61 from acts.utils import exe_cmd
1624 exe_cmd(cmd)
1629 exe_cmd(cmd)
Dbt_contacts_utils.py28 from acts.utils import exe_cmd
Dgatts_lib.py33 from acts.utils import exe_cmd
Dbt_carkit_lib.py40 from acts.utils import exe_cmd
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/
Dota_chamber.py127 utils.exe_cmd('sudo {} -d {} -i 0'.format(self.TURNTABLE_FILE_PATH,
133 utils.exe_cmd('sudo {} -d {} -p {}'.format(self.TURNTABLE_FILE_PATH,
Dota_sniffer.py376 utils.exe_cmd('cp {} {}'.format(log_file, temp_dump_file))
398 utils.exe_cmd('rm -f {}'.format(temp_dump_file))
Dwifi_test_utils.py1782 utils.exe_cmd(cmd)
/tools/test/connectivity/acts_tests/tests/google/tel/lab/
DTelLabEmergencyCallTest.py68 from acts.utils import exe_cmd
104 output = exe_cmd(cmd)
DTelLabDataTest.py81 from acts.utils import exe_cmd
DTelLabMobilityTest.py64 from acts.utils import exe_cmd
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
Dcoex_test_utils.py63 from acts.utils import exe_cmd
161 exe_cmd(cmd)
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
Dtel_test_utils.py193 from acts.utils import exe_cmd
8546 output = exe_cmd(apm_check_cmd)
8560 exe_cmd(cmd1)
8561 exe_cmd(cmd2)
9087 destination_ip = exe_cmd(cmd)
/tools/test/connectivity/acts_tests/tests/google/bt/car_bt/
DBtCarPbapTest.py29 from acts.utils import exe_cmd
/tools/test/connectivity/acts/framework/acts/
Dutils.py385 def exe_cmd(*cmds): function