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.java134 StringBuilder testPath = new StringBuilder(mDeviceTestPath); in getTestPath() local
136 testPath.append(FileListingService.FILE_SEPARATOR); in getTestPath()
137 testPath.append(mTestModule); in getTestPath()
139 return testPath.toString(); in getTestPath()
256 String testPath = getTestPath(); in run() local
257 if (!mDevice.doesFileExist(testPath)) { in run()
259 testPath, mDevice.getSerialNumber())); in run()
261 String.format("Could not find native benchmark test directory %s", testPath)); in run()
263 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.java109 StringBuilder testPath = new StringBuilder(mNativeTestDevicePath); in getTestPath() local
112 testPath.append(FileListingService.FILE_SEPARATOR); in getTestPath()
113 testPath.append(testModule); in getTestPath()
115 return testPath.toString(); in getTestPath()
337 String testPath = getTestPath(); in run() local
338 if (!mDevice.doesFileExist(testPath)) { in run()
339 CLog.w("Could not find native test directory %s in %s!", testPath, in run()
350 doRunAllTestsInSubdirectory(testPath, mDevice, listener); in run()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DGTestTest.java221 String testPath = nativeTestPath + "/test1"; in doTestFilter() local
226 EasyMock.expect(mMockITestDevice.isDirectory(testPath)).andReturn(false); in doTestFilter()
228 EasyMock.expect(mMockITestDevice.isExecutable(testPath)).andReturn(true); in doTestFilter()
293 String testPath = nativeTestPath + "/test1"; in testCommandTooLong() local
298 EasyMock.expect(mMockITestDevice.isDirectory(testPath)).andReturn(false); in testCommandTooLong()
300 EasyMock.expect(mMockITestDevice.isExecutable(testPath)).andReturn(true); in testCommandTooLong()