Home
last modified time | relevance | path

Searched refs:ldLibraryPath (Results 1 – 8 of 8) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DTestRunnerUtil.java78 String ldLibraryPath = String.join(java.io.File.pathSeparator, paths); in getLdLibraryPath() local
79 CLog.d("Identify LD_LIBRARY_PATH to be used: %s", ldLibraryPath); in getLdLibraryPath()
80 return ldLibraryPath; in getLdLibraryPath()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/binary/
DExecutableHostTest.java116 String ldLibraryPath = TestRunnerUtil.getLdLibraryPath(new File(binaryPath)); in runBinary() local
120 if (ldLibraryPath != null) { in runBinary()
121 ldLibraryPath = String.format("%s%s%s", ldLibraryPath, java.io.File.pathSeparator, cwd); in runBinary()
123 ldLibraryPath = cwd; in runBinary()
125 runUtil.setEnvVariable(LD_LIBRARY_PATH, ldLibraryPath); in runBinary()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/rust/
DRustTestBase.java220 private String ldLibraryPath() { in ldLibraryPath() method in RustTestBase
259 if (ldLibraryPath() != null) { in generateInvocations()
260 env.add(new EnvPair("LD_LIBRARY_PATH", ldLibraryPath())); in generateInvocations()
DRustBinaryHostTest.java228 String ldLibraryPath = TestRunnerUtil.getLdLibraryPath(new File(invocation.command[0])); in runInvocation() local
229 if (ldLibraryPath != null) { in runInvocation()
230 runUtil.setEnvVariable("LD_LIBRARY_PATH", ldLibraryPath); in runInvocation()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/python/
DPythonBinaryHostTest.java204 List<String> ldLibraryPath = new ArrayList<>(); in run() local
211 ldLibraryPath.add(libDir.getAbsolutePath()); in run()
214 if (!ldLibraryPath.isEmpty()) { in run()
215 mLdLibraryPath = Joiner.on(":").join(ldLibraryPath); in run()
228 List<String> paths = findAllSubdir(pyFile.getParentFile(), ldLibraryPath); in run()
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/
DIsolatedHostTestTest.java156 List<String> ldLibraryPath = new ArrayList<>(); in testRavenwoodResourcesPositive() local
157 makeDirAndAddToList(dir, "lib", ldLibraryPath); in testRavenwoodResourcesPositive()
158 makeDirAndAddToList(dir, "lib64", ldLibraryPath); in testRavenwoodResourcesPositive()
165 String expectedLdLibraryPath = String.join(java.io.File.pathSeparator, ldLibraryPath); in testRavenwoodResourcesPositive()
569 final String ldLibraryPath = in testCompileLdLibraryPath() local
571 assertEquals(expectedLdLibraryPath, ldLibraryPath); in testCompileLdLibraryPath()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DHostGTest.java146 String ldLibraryPath = TestRunnerUtil.getLdLibraryPath(gtestFile); in executeHostGTestCommand() local
147 if (ldLibraryPath != null) { in executeHostGTestCommand()
148 runUtil.setEnvVariable("LD_LIBRARY_PATH", ldLibraryPath); in executeHostGTestCommand()
DIsolatedHostTest.java226 String ldLibraryPath = this.compileLdLibraryPath(); in run() local
227 if (ldLibraryPath != null) { in run()
228 runner.setEnvVariable("LD_LIBRARY_PATH", ldLibraryPath); in run()