diff options
author | 2021-08-06 17:49:46 +0100 | |
---|---|---|
committer | 2021-08-10 15:35:52 +0100 | |
commit | abcd59731e0f88b988b8e97562c9ecd116802353 (patch) | |
tree | c95c937ede641f37051c41d2177b83243c155179 /java/bootclasspath_fragment_test.go | |
parent | 47c456228c7f79bccea810db1e5f8fda0a77610c (diff) |
Fix tests to use correct fixtures for configuring (Apex)BootJars.
This is in preparation to r.android.com/1740313 where setting correct
variables would be enforced (i.e. apex and non-apex boot jars must be in
config.ApexBootJars and config.BootJars correspondingly).
Bug: 191369843
Test: m nothing
Change-Id: Ic86680c1f7af53d229083b2cc58beb3ceccb4b6a
Diffstat (limited to 'java/bootclasspath_fragment_test.go')
-rw-r--r-- | java/bootclasspath_fragment_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/bootclasspath_fragment_test.go b/java/bootclasspath_fragment_test.go index 3d0e1558f..d3de675d8 100644 --- a/java/bootclasspath_fragment_test.go +++ b/java/bootclasspath_fragment_test.go @@ -164,6 +164,7 @@ func TestBootclasspathFragment_Coverage(t *testing.T) { prepareForTestWithBootclasspathFragment, PrepareForTestWithJavaSdkLibraryFiles, FixtureWithLastReleaseApis("mysdklibrary", "mycoveragestubs"), + FixtureConfigureApexBootJars("someapex:mybootlib"), prepareWithBp, ) @@ -186,6 +187,7 @@ func TestBootclasspathFragment_StubLibs(t *testing.T) { prepareForTestWithBootclasspathFragment, PrepareForTestWithJavaSdkLibraryFiles, FixtureWithLastReleaseApis("mysdklibrary", "myothersdklibrary", "mycoreplatform"), + FixtureConfigureApexBootJars("someapex:mysdklibrary"), ).RunTestWithBp(t, ` bootclasspath_fragment { name: "myfragment", |