aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tradefed/build/IDeviceBuildInfo.java
diff options
context:
space:
mode:
authorBrett Chabot <brettchabot@android.com>2011-07-08 18:05:35 -0700
committerBrett Chabot <brettchabot@android.com>2011-07-11 16:17:13 -0700
commitacbe50ea7946ed94bc26fa7c2cbd0f41ff8f2309 (patch)
treee1cc412518a60f1c6d47290775f810b350ee95b4 /src/com/android/tradefed/build/IDeviceBuildInfo.java
parent380729d833e474eca9c2c72e4669e3eede4a5152 (diff)
downloadtradefederation-acbe50ea7946ed94bc26fa7c2cbd0f41ff8f2309.tar.gz
Store the extracted tests zip in device build.
As opposed to storing the zip file itself, and relying on clients to extract the content. Change-Id: I1f9741af6dd153f67820f821fc173ee6516db61a
Diffstat (limited to 'src/com/android/tradefed/build/IDeviceBuildInfo.java')
-rw-r--r--src/com/android/tradefed/build/IDeviceBuildInfo.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/android/tradefed/build/IDeviceBuildInfo.java b/src/com/android/tradefed/build/IDeviceBuildInfo.java
index cec2950ba..30e0a6d95 100644
--- a/src/com/android/tradefed/build/IDeviceBuildInfo.java
+++ b/src/com/android/tradefed/build/IDeviceBuildInfo.java
@@ -71,16 +71,16 @@ public interface IDeviceBuildInfo extends IBuildInfo {
public void setUserDataImageFile(File userDataFile);
/**
- * Get the local tests zip file.
+ * Get the local path to the extracted tests.zip file contents.
*/
- public File getTestsZipFile();
+ public File getTestsDir();
/**
- * Set the tests zip file to use.
+ * Set local path to the extracted tests.zip file contents.
*
* @param testsZipFile
*/
- public void setTestsZipFile(File testsZipFile);
+ public void setTestsDir(File testsZipFile);
/**
* Get the local baseband image file.