Home
last modified time | relevance | path

Searched refs:testPath (Results 1 – 5 of 5) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/testtype/
DGoogleBenchmarkTest.java126 StringBuilder testPath = new StringBuilder(mDeviceTestPath); in getTestPath() local
128 testPath.append(FileListingService.FILE_SEPARATOR); in getTestPath()
129 testPath.append(mTestModule); in getTestPath()
131 return testPath.toString(); in getTestPath()
250 String testPath = getTestPath(); in run() local
251 if (!mDevice.doesFileExist(testPath)) { in run()
253 testPath, mDevice.getSerialNumber())); in run()
255 String.format("Could not find native benchmark test directory %s", testPath)); in run()
257 doRunAllTestsInSubdirectory(testPath, mDevice, listener); in run()
DNativeStressTest.java131 StringBuilder testPath = new StringBuilder(mDeviceTestPath); in getTestPath() local
133 testPath.append(FileListingService.FILE_SEPARATOR); in getTestPath()
134 testPath.append(mTestModule); in getTestPath()
136 return testPath.toString(); in getTestPath()
230 String testPath = getTestPath(); in run() local
231 IFileEntry nativeTestDirectory = mDevice.getFileEntry(testPath); in run()
234 testPath, mDevice.getSerialNumber())); in run()
DNativeBenchmarkTest.java153 StringBuilder testPath = new StringBuilder(mDeviceTestPath); in getTestPath() local
155 testPath.append(FileListingService.FILE_SEPARATOR); in getTestPath()
156 testPath.append(mTestModule); in getTestPath()
158 return testPath.toString(); in getTestPath()
254 String testPath = getTestPath(); in run() local
255 IFileEntry nativeTestDirectory = mDevice.getFileEntry(testPath); in run()
258 testPath, mDevice.getSerialNumber())); in run()
DGTest.java425 StringBuilder testPath = new StringBuilder(mNativeTestDevicePath); in getTestPath() local
427 testPath.append(FileListingService.FILE_SEPARATOR); in getTestPath()
428 testPath.append(mTestModule); in getTestPath()
430 return testPath.toString(); in getTestPath()
734 String testPath = getTestPath(); in run() local
735 if (!mDevice.doesFileExist(testPath)) { in run()
736 CLog.w("Could not find native test directory %s in %s!", testPath, in run()
745 doRunAllTestsInSubdirectory(testPath, mDevice, listener); in run()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DGTestTest.java223 String testPath = nativeTestPath + "/test1"; in doTestFilter() local
228 EasyMock.expect(mMockITestDevice.isDirectory(testPath)).andReturn(false); in doTestFilter()
230 EasyMock.expect(mMockITestDevice.executeShellCommand("ls -l " + testPath)) in doTestFilter()
231 .andReturn("-rwxr-xr-x 1 root shell 1000 2009-01-01 00:00 " + testPath); in doTestFilter()
296 String testPath = nativeTestPath + "/test1"; in testCommandTooLong() local
301 EasyMock.expect(mMockITestDevice.isDirectory(testPath)).andReturn(false); in testCommandTooLong()
303 EasyMock.expect(mMockITestDevice.executeShellCommand("ls -l " + testPath)) in testCommandTooLong()
304 .andReturn("-rwxr-xr-x 1 root shell 1000 2009-01-01 00:00 " + testPath); in testCommandTooLong()