summaryrefslogtreecommitdiffstats
path: root/test-runner
diff options
context:
space:
mode:
authorKen Shirriff <kens@google.com>2009-07-06 10:45:38 -0700
committerKen Shirriff <kens@google.com>2009-07-06 10:45:38 -0700
commit3b95f5378957c4e985429dfefda3975416c1a039 (patch)
tree5c463b9a6e1eef6f50171e2c23bdd1ab5cbd0f8e /test-runner
parentc2b9d63953c1261b12a99f295366d43ed90bae7f (diff)
downloadframeworks_base-3b95f5378957c4e985429dfefda3975416c1a039.zip
frameworks_base-3b95f5378957c4e985429dfefda3975416c1a039.tar.gz
frameworks_base-3b95f5378957c4e985429dfefda3975416c1a039.tar.bz2
Changes for new sync.
Add ContentValues-based RecurrenceSet processing. Add test stub needed by SSL caching.
Diffstat (limited to 'test-runner')
-rw-r--r--test-runner/android/test/IsolatedContext.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/test-runner/android/test/IsolatedContext.java b/test-runner/android/test/IsolatedContext.java
index 03d95b7..4bd9528 100644
--- a/test-runner/android/test/IsolatedContext.java
+++ b/test-runner/android/test/IsolatedContext.java
@@ -17,6 +17,7 @@ import android.os.Handler;
import android.os.Looper;
import java.util.List;
+import java.io.File;
/**
* A mock context which prevents its users from talking to the rest of the device while
@@ -101,4 +102,8 @@ public class IsolatedContext extends ContextWrapper {
// do nothing
}
}
+ @Override
+ public File getFilesDir() {
+ return new File("/dev/null");
+ }
}