Home
last modified time | relevance | path

Searched refs:tfPath (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/
DClusterCommandLauncherTest.java229 final File tfPath = in testRun_withUseSubprocessReporting() local
237 if (tfPath.isDirectory()) { in testRun_withUseSubprocessReporting()
239 String.format("%s/:%s/*", tfPath.getAbsolutePath(), tfPath.getAbsolutePath()); in testRun_withUseSubprocessReporting()
241 classpath = tfPath.getAbsolutePath(); in testRun_withUseSubprocessReporting()
243 mOptionSetter.setOptionValue("cluster:env-var", "TF_PATH", tfPath.getAbsolutePath()); in testRun_withUseSubprocessReporting()
267 Mockito.verify(mMockRunUtil).setEnvVariable("TF_PATH", tfPath.getAbsolutePath()); in testRun_withUseSubprocessReporting()
/tools/tradefederation/core/global_configuration/com/android/tradefed/config/gcs/
DGCSConfigurationFactory.java74 String tfPath = System.getProperty("TF_JAR_DIR"); in getConfigStream() local
75 if (tfPath != null) { in getConfigStream()
77 if (tfPath.equals(".")) { in getConfigStream()
80 tfDir = new File(tfPath).getAbsoluteFile(); in getConfigStream()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandLauncher.java254 final String tfPath = getEnvVar(TF_PATH, System.getProperty(TF_JAR_DIR)); in buildJavaClasspath() local
255 if (tfPath == null) { in buildJavaClasspath()
265 for (final String path : tfPath.split(":")) { in buildJavaClasspath()
280 throw new RuntimeException(String.format("cannot find any TF jars from %s!", tfPath)); in buildJavaClasspath()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DRemoteInvocationExecution.java650 String tfPath = System.getProperty("TF_JAR_DIR"); in getLocalTradefedPath() local
651 if (tfPath == null) { in getLocalTradefedPath()
657 File currentTf = new File(tfPath).getAbsoluteFile(); in getLocalTradefedPath()
658 if (tfPath.equals(".")) { in getLocalTradefedPath()