diff options
author | 2019-06-18 22:48:22 +0000 | |
---|---|---|
committer | 2019-06-18 22:48:22 +0000 | |
commit | f8a698a0c6d76fb6717095742d907a83d03140f1 (patch) | |
tree | 654a7625128fd6a37dac800c5f298bd31d6c059c /java/sdk_test.go | |
parent | 4b1f4fe1389bd974ded1ce7a3366d96ed5dff7db (diff) | |
parent | 0f41678d008f433b5d88c2d3e211e8cdde08502c (diff) |
Merge changes from topics "rbe-deps-dexpreopt-images", "rbe-deps-system-modules"
* changes:
Expand the dexpreopt image dependencies to entire image
Depend on all the files from system modules
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) { |