summaryrefslogtreecommitdiff
path: root/java/sdk_test.go
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2019-06-13 16:52:01 +0000
committerDan Willemsen <dwillemsen@google.com>2019-06-18 01:29:02 +0000
commitff60a73d899d2d0d1c23eca503a2aeb3fdbd1feb (patch)
tree88096efc2a68d4d18ef29ff55e53995352d1390e /java/sdk_test.go
parenteec8d3aee3cc10df45f6e21f11d623bd91efa1fd (diff)
Depend on all the files from system modules
Instead of just one of the files that we pass into javac. Test: treehugger Change-Id: I8478e88656487c9f667893d7c17839f0ea63c78f
Diffstat (limited to 'java/sdk_test.go')
-rw-r--r--java/sdk_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/sdk_test.go b/java/sdk_test.go
index 915333ec9..953c3722f 100644
--- a/java/sdk_test.go
+++ b/java/sdk_test.go
@@ -254,7 +254,7 @@ func TestClasspath(t *testing.T) {
if testcase.system == "none" {
system = "--system=none"
} else if testcase.system != "" {
- system = "--system=" + filepath.Join(buildDir, ".intermediates", testcase.system, "android_common", "system") + "/"
+ system = "--system=" + filepath.Join(buildDir, ".intermediates", testcase.system, "android_common", "system")
}
checkClasspath := func(t *testing.T, ctx *android.TestContext) {