Home
last modified time | relevance | path

Searched refs:join (Results 1 – 25 of 179) sorted by relevance

12345678

/tools/acloud/public/acloud_kernel/
Dkernel_swapper_test.py51 ' '.join(kernel_swapper.SSH_FLAGS), self.fake_ip)
52 self.scp_cmd_prefix = 'scp %s' % ' '.join(kernel_swapper.SSH_FLAGS)
58 scp_cmd = ' '.join([self.scp_cmd_prefix, '%s root@%s:%s' %
67 reboot_cmd = ' '.join([
78 mount_cmd = ' '.join([
81 scp_cmd = ' '.join([self.scp_cmd_prefix, '%s root@%s:%s' %
83 reboot_cmd = ' '.join([
Dkernel_swapper.py32 ALL_SCOPES = ' '.join([android_build_client.AndroidBuildClient.SCOPE,
113 cmd = 'scp %s %s root@%s:%s' % (' '.join(SSH_FLAGS), src_path,
136 ssh_cmd = 'ssh %s root@%s' % (' '.join(SSH_FLAGS), self._target_ip)
137 host_cmd = ' '.join([ssh_cmd, '"%s"' % target_cmd])
/tools/tradefederation/core/atest/test_finders/
Dtf_integration_finder_unittest.py35 GTF_INT_CONFIG = os.path.join(uc.GTF_INT_DIR, uc.GTF_INT_NAME + '.xml')
56 self.tf_finder.integration_dirs = [os.path.join(uc.ROOT, uc.INT_DIR),
57 os.path.join(uc.ROOT, uc.GTF_INT_DIR)]
71 mock_find.return_value = os.path.join(uc.ROOT, uc.INT_DIR, uc.INT_NAME + '.xml')
81 mock_find.return_value = os.path.join(uc.ROOT, uc.GTF_INT_DIR,
102 path = os.path.join(uc.INT_DIR, uc.INT_NAME + '.xml')
105 path = os.path.join(uc.GTF_INT_DIR, uc.GTF_INT_NAME + '.xml')
114 search.return_value = os.path.join(uc.TEST_DATA_DIR,
116 xml_file = os.path.join(uc.TEST_DATA_DIR, constants.MODULE_CONFIG)
Dtest_finder_utils.py84 _VTS_PUSH_DIR = os.path.join(os.environ.get(constants.ANDROID_BUILD_TOP, ''),
188 print 'Multiple tests found:\n%s' % '\n'.join(numbered_list)
235 user_out_dir = os.path.join(build_top, custom_out_dir)
371 if os.path.isfile(os.path.join(current_dir, constants.MODULE_CONFIG)):
514 full_push_file_path = os.path.join(_VTS_PUSH_DIR, push_file)
529 targets.add(os.path.join(rel_out_dir, sanitized_target))
573 target = os.path.join(rel_out_dir, match.group('target'))
577 target = os.path.join(rel_out_dir, target)
625 targets.add(os.path.join(rel_out_dir, push_target + _VTS_BITNESS_32))
626 targets.add(os.path.join(rel_out_dir, push_target + _VTS_BITNESS_64))
[all …]
Dmodule_finder.py79 if os.path.isfile(os.path.join(self.root_dir, path,
145 config_file = os.path.join(self.root_dir,
154 vts_out_dir = os.path.join(out_dir, 'vts', 'android-vts', 'testcases')
269 config_file = os.path.join(self.root_dir, rel_config)
288 rel_config = os.path.join(mod_info['path'][0],
315 search_dir = os.path.join(self.root_dir,
335 rel_config = os.path.join(rel_module_dir, constants.MODULE_CONFIG)
383 search_dir = os.path.join(self.root_dir,
397 rel_config = os.path.join(rel_module_dir, constants.MODULE_CONFIG)
455 rel_config = os.path.join(rel_module_dir, constants.MODULE_CONFIG)
[all …]
/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DJavaCrashParserTest.java45 assertEquals(ArrayUtil.join("\n", lines), jc.getStack()); in testParse_no_message()
62 assertEquals(ArrayUtil.join("\n", lines), jc.getStack()); in testParse_message()
81 assertEquals(ArrayUtil.join("\n", lines), jc.getStack()); in testParse_multiline_message()
106 assertEquals(ArrayUtil.join("\n", lines), jc.getStack()); in testParse_caused_by()
125 assertEquals(ArrayUtil.join("\n", lines.subList(0, lines.size()-2)), jc.getStack()); in testParse_cutoff()
DTracesParserTest.java105 assertEquals(ArrayUtil.join("\n", expectedStack), traces.getStack()); in testTracesParser()
142 assertEquals(ArrayUtil.join("\n", expectedStack), traces.getStack()); in testTracesParser_cmdline()
165 assertEquals(ArrayUtil.join("\n", expectedStack), traces.getStack()); in testTracesParser_cmdline()
DAnrParserTest.java61 assertEquals(ArrayUtil.join("\n", lines), anr.getStack()); in testParse_application_not_responding()
94 assertEquals(ArrayUtil.join("\n", lines), anr.getStack()); in testParse_anr_in_app()
127 assertEquals(ArrayUtil.join("\n", lines), anr.getStack()); in testParse_anr_in_app_class_package()
162 assertEquals(ArrayUtil.join("\n", lines), anr.getStack()); in testParse_anr_in_app_class_package_pid()
DProcrankParserTest.java61 assertEquals(ArrayUtil.join("\n", inputBlock), procrank.getText()); in testProcRankParserShortLine()
94 assertEquals(ArrayUtil.join("\n", inputBlock), procrank.getText()); in testProcRankParserLongLine()
/tools/tradefederation/core/atest/
Dunittest_constants.py43 TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), 'unittest_data')
49 CONFIG_FILE = os.path.join(MODULE_DIR, constants.MODULE_CONFIG)
50 CONFIG2_FILE = os.path.join(MODULE2_DIR, constants.MODULE_CONFIG)
68 TEST_DATA_CONFIG = os.path.relpath(os.path.join(TEST_DATA_DIR,
95 INT_CONFIG = os.path.join(INT_DIR, INT_NAME + '.xml')
96 GTF_INT_CONFIG = os.path.join(GTF_INT_DIR, GTF_INT_NAME + '.xml')
Dmodule_info_unittest.py27 JSON_FILE_PATH = os.path.join(uc.TEST_DATA_DIR, uc.JSON_FILE)
46 default_out_dir = os.path.join(build_top, 'out/dir/here')
58 custom_out_dir = os.path.join(build_top, 'out2/dir/here')
/tools/loganalysis/tests/src/com/android/loganalysis/util/
DArrayUtilTest.java46 String str = ArrayUtil.join(", ", list); in testJoinCollection()
56 String str = ArrayUtil.join(", ", (Object[]) ary); in testJoinArray()
65 String str = ArrayUtil.join(", ", "alpha", "beta", "gamma"); in testJoinNormal()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DArrayUtilTest.java46 String str = ArrayUtil.join(", ", list); in testJoinCollection()
56 String str = ArrayUtil.join(", ", (Object[]) ary); in testJoinArray()
65 String str = ArrayUtil.join(", ", "alpha", "beta", "gamma"); in testJoinNormal()
/tools/test/connectivity/acts/tests/google/ble/system_tests/
DBleStressTest.py170 expected_advertise_event_name = "".join(
179 self.log.debug(" ".join(
184 self.log.debug(" ".join([
223 expected_advertise_event_name = "".join(
232 self.log.debug(" ".join(
237 self.log.debug(" ".join([
253 self.log.debug(" ".join(
258 self.log.debug(" ".join([
/tools/tradefederation/core/tests/src/com/android/tradefed/build/
DFileDownloadCacheFuncTest.java97 downloadThread1.join(); in testFetchRemoteFile_concurrent()
98 downloadThread2.join(); in testFetchRemoteFile_concurrent()
171 downloadThread2.join(2000); in testFetchRemoteFile_multiConcurrent()
172 downloadThread3.join(2000); in testFetchRemoteFile_multiConcurrent()
180 downloadThread1.join(2000); in testFetchRemoteFile_multiConcurrent()
242 downloadThread1.join(2000); in testFetchRemoteFile_concurrentFail()
243 downloadThread2.join(2000); in testFetchRemoteFile_concurrentFail()
250 downloadThread3.join(2000); in testFetchRemoteFile_concurrentFail()
/tools/test/connectivity/acts/framework/acts/controllers/
Diperf_server.py84 iperf_string = ''.join(iperf_output)
92 self.result = json.loads(''.join(lines))
211 self.log_path = os.path.join(log_path, "iPerf{}".format(self.port))
232 self.full_out_path = os.path.join(self.log_path, out_file_name)
259 self.log_path = os.path.join(log_path, "iPerf{}".format(self.port))
280 self.full_out_path = os.path.join(self.log_path, out_file_name)
319 self.log_path = os.path.join(log_path, "iPerf{}".format(self.port))
340 self.full_out_path = os.path.join(self.log_path, out_file_name)
Dadb.py45 output = ''.join(re.findall(r"'(.*)'", output))
105 self.adb_str = " ".join(adb_cmd)
178 return self._exec_cmd(' '.join((self.adb_str, name, arg_str)),
191 return self._exec_cmd_nb(' '.join((self.adb_str, name, arg_str)),
267 arg_str = ' '.join(str(elem) for elem in args)
Diperf_client.py29 self.log_path = os.path.join(log_path, "iPerf{}".format(self.port))
54 full_out_path = os.path.join(self.log_path, out_file_name)
/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/
DHttpHelperFuncTest.java54 backend.join(2 * backendTimeout); in testTimeout()
72 backend.join(2 * backendTimeout); in testTimeout()
96 backend.join(2 * backendTimeout); in testNoTimeout()
109 backend.join(2 * backendTimeout); in testNoTimeout()
/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandSchedulerTest.java205 mScheduler.join(); in testRun_empty()
253 mScheduler.join(); in testRun_oneConfig()
298 mScheduler.join(); in testRun_dryRun()
324 mScheduler.join(); in testRun_dryRun_keystore()
356 mScheduler.join(2*1000); in testExecCommand()
427 mScheduler.join(); in testRun_oneConfigLoop()
475 mScheduler.join(2 * 1000); in testRun_fatalError()
508 mScheduler.join(); in testRun_configSerial()
536 mScheduler.join(); in testRun_configExcludeSerial()
579 mScheduler.join(); in testRun_rescheduled()
[all …]
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DBackgroundDeviceActionTest.java80 mBackgroundAction.join(JOIN_WAIT_TIME_MS); in testBackgroundActionComplete()
111 mBackgroundAction.join(JOIN_WAIT_TIME_MS); in testBackgroundAction_shellException()
136 test.join(JOIN_WAIT_TIME_MS); in testwaitForDeviceRecovery_online()
161 test.join(LONG_WAIT_TIME_MS); in testwaitForDeviceRecovery_blockOffline()
/tools/test/connectivity/acts/tests/google/power/tel/lab/temp/
Diperf_server.py72 iperf_string = ''.join(iperf_output)
80 self.result = json.loads(''.join(lines))
208 self.log_path = os.path.join(log_path, "iPerf{}".format(self.port))
230 self.full_out_path = os.path.join(self.log_path, out_file_name)
/tools/test/connectivity/acts/framework/tests/
Dacts_android_device_test.py111 return "\t".join([str(self.serial), "device"])
114 expected = os.path.join(
128 arg_str = ' '.join(str(elem) for elem in args)
145 arg_str = ' '.join(str(elem) for elem in args)
263 expected_lp = os.path.join(logging.log_path,
348 expected_path = os.path.join(
386 expected_path = os.path.join(
417 expected_log_path = os.path.join(logging.log_path,
465 expected_log_path = os.path.join(logging.log_path,
/tools/test/connectivity/acts/tests/google/bt/audio_lab/
DBtChameleonTest.py142 sox_audio_path = os.path.join(
155 audio_to_play = os.path.join(self.android_sdcard_music_path,
203 sox_audio_path = os.path.join(
214 audio_to_play = os.path.join(self.android_sdcard_music_path,
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
DBtFunhausBaseTest.py118 music_path = os.path.join(self.user_params[Config.key_config_path],
132 file = os.path.join(dirname, filename)
147 dumpsys_path = ''.join((ad.log_path, "/BluetoothDumpsys"))
149 cmd = ''.join(

12345678