Searched refs:workingDir (Results 1 – 5 of 5) sorted by relevance
/test/vts/harnesses/tradefed/src/com/android/tradefed/util/ |
D | VtsPythonRunnerHelper.java | 42 public VtsPythonRunnerHelper(IBuildInfo buildInfo, File workingDir) { in VtsPythonRunnerHelper() argument 44 workingDir); in VtsPythonRunnerHelper() local 47 public VtsPythonRunnerHelper(String virtualEnvPath, File workingDir) { in VtsPythonRunnerHelper() argument 48 this(virtualEnvPath == null ? null : new File(virtualEnvPath), workingDir); in VtsPythonRunnerHelper() 51 public VtsPythonRunnerHelper(File virtualEnvPath, File workingDir) { in VtsPythonRunnerHelper() argument 52 this(virtualEnvPath, workingDir, new RunUtil()); in VtsPythonRunnerHelper() 55 public VtsPythonRunnerHelper(File virtualEnvPath, File workingDir, IRunUtil runUtil) { in VtsPythonRunnerHelper() argument 59 mRunUtil.setWorkingDir(workingDir); in VtsPythonRunnerHelper()
|
/test/vts/harnesses/tradefed/tests/src/com/android/tradefed/testtype/ |
D | VtsMultiDeviceTestTest.java | 83 protected VtsPythonRunnerHelper createVtsPythonRunnerHelper(File workingDir) { in setUp() 84 return createMockVtsPythonRunnerHelper(CommandStatus.SUCCESS, workingDir); in setUp() 184 CommandStatus status, File workingDir) { in createMockVtsPythonRunnerHelper() argument 185 return new VtsPythonRunnerHelper(new File(PYTHON_DIR), workingDir) { in createMockVtsPythonRunnerHelper() 256 protected VtsPythonRunnerHelper createVtsPythonRunnerHelper(File workingDir) { 257 return createMockVtsPythonRunnerHelper(CommandStatus.SUCCESS, workingDir); 299 protected VtsPythonRunnerHelper createVtsPythonRunnerHelper(File workingDir) { 300 return createMockVtsPythonRunnerHelper(CommandStatus.SUCCESS, workingDir); 344 protected VtsPythonRunnerHelper createVtsPythonRunnerHelper(File workingDir) { 345 return createMockVtsPythonRunnerHelper(CommandStatus.FAILED, workingDir);
|
/test/vts/harnesses/tradefed/src/com/android/tradefed/device/metric/ |
D | VtsCoverageCollector.java | 67 File workingDir = null; in onTestRunEnd() local 70 workingDir = invocationHelper.getTestsDir(); in onTestRunEnd() 75 mPythonRunnerHelper = new VtsPythonRunnerHelper(buildInfo, workingDir); in onTestRunEnd()
|
/test/vts/harnesses/tradefed/src/com/android/tradefed/targetprep/ |
D | VtsPythonVirtualenvPreparer.java | 471 File workingDir = null; in createVirtualEnvCache() local 475 workingDir = new CompatibilityBuildHelper(buildInfo).getDir(); in createVirtualEnvCache() 477 workingDir = new File(System.getProperty("java.io.tmpdir")); in createVirtualEnvCache() 479 virtualEnvDir = new File(workingDir, "vts-virtualenv-" + mPythonVersion); in createVirtualEnvCache()
|
/test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/ |
D | VtsMultiDeviceTest.java | 1521 protected VtsPythonRunnerHelper createVtsPythonRunnerHelper(File workingDir) { in createVtsPythonRunnerHelper() argument 1522 return new VtsPythonRunnerHelper(mBuildInfo, workingDir); in createVtsPythonRunnerHelper()
|