Home
last modified time | relevance | path

Searched refs:execFiles (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DShardBuildCloner.java76 ExecutionFiles execFiles = newInfo.executionFiles(); in cloneBuildInfos() local
77 if (execFiles.get(FilesKey.TESTS_DIRECTORY) != null) { in cloneBuildInfos()
78 if (execFiles in cloneBuildInfos()
81 execFiles.put( in cloneBuildInfos()
86 if (execFiles.get(FilesKey.HOST_TESTS_DIRECTORY) != null) { in cloneBuildInfos()
87 if (execFiles in cloneBuildInfos()
90 execFiles.put( in cloneBuildInfos()
95 if (execFiles.get(FilesKey.TARGET_TESTS_DIRECTORY) != null) { in cloneBuildInfos()
96 if (execFiles in cloneBuildInfos()
99 execFiles.put( in cloneBuildInfos()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/invoker/sandbox/
DSandboxedInvocationExecution.java81 ExecutionFiles execFiles = testInfo.executionFiles(); in backFillTestInformation() local
82 if (execFiles.get(FilesKey.TESTS_DIRECTORY) == null) { in backFillTestInformation()
85 execFiles.put(FilesKey.TESTS_DIRECTORY, testsDir); in backFillTestInformation()
88 if (execFiles.get(FilesKey.TARGET_TESTS_DIRECTORY) == null) { in backFillTestInformation()
91 execFiles.put(FilesKey.TARGET_TESTS_DIRECTORY, targetDir, true); in backFillTestInformation()
94 if (execFiles.get(FilesKey.HOST_TESTS_DIRECTORY) == null) { in backFillTestInformation()
97 execFiles.put(FilesKey.HOST_TESTS_DIRECTORY, hostDir, true); in backFillTestInformation()
105 && !execFiles.containsKey(key)) { in backFillTestInformation()
106 execFiles.put(key, versionedFile.getFile()); in backFillTestInformation()