diff options
author | Dan Willemsen <dwillemsen@google.com> | 2019-06-13 16:52:01 +0000 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2019-06-18 01:29:02 +0000 |
commit | ff60a73d899d2d0d1c23eca503a2aeb3fdbd1feb (patch) | |
tree | 88096efc2a68d4d18ef29ff55e53995352d1390e /java/sdk_test.go | |
parent | eec8d3aee3cc10df45f6e21f11d623bd91efa1fd (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.go | 2 |
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) { |