summaryrefslogtreecommitdiff
path: root/java/java_test.go
diff options
context:
space:
mode:
authorNeil Fuller <nfuller@google.com>2018-08-24 14:45:18 +0100
committerNeil Fuller <nfuller@google.com>2018-08-28 13:16:19 +0100
commit6095259f5b1046ad00f8af59c74ef083c4c59c1d (patch)
tree29c84a0e24ead9afe0d4d1bbf46e922e1b4ea91b /java/java_test.go
parentea5019a407299f2bb3312b1a68080ec8c5cda808 (diff)
Track changes to add core-simple to the boot cp
See the change in build/make for details. Bug: 113148576 Test: make checkbuild / Treehugger Change-Id: I6f7901642c6b907b1e8e9dd31ced3bf1ea6dfd4d
Diffstat (limited to 'java/java_test.go')
-rw-r--r--java/java_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/java/java_test.go b/java/java_test.go
index 72341ee26..c9f3dbf17 100644
--- a/java/java_test.go
+++ b/java/java_test.go
@@ -101,6 +101,7 @@ func testContext(config android.Config, bp string,
"core-oj",
"core-libart",
"core-lambda-stubs",
+ "core-simple",
"framework",
"ext",
"okhttp",
@@ -353,14 +354,14 @@ var classpathTestcases = []struct {
}{
{
name: "default",
- bootclasspath: []string{"core-oj", "core-libart"},
+ bootclasspath: []string{"core-oj", "core-libart", "core-simple"},
system: "core-system-modules",
classpath: []string{"ext", "framework", "okhttp"},
},
{
name: "blank sdk version",
properties: `sdk_version: "",`,
- bootclasspath: []string{"core-oj", "core-libart"},
+ bootclasspath: []string{"core-oj", "core-libart", "core-simple"},
system: "core-system-modules",
classpath: []string{"ext", "framework", "okhttp"},
},