summaryrefslogtreecommitdiff
path: root/apex/bootclasspath_fragment_test.go
diff options
context:
space:
mode:
author Paul Duffin <paulduffin@google.com> 2021-06-25 11:08:31 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2021-06-25 11:08:31 +0000
commit136fd5554d64d525fb1af9e72e76b854900173f6 (patch)
tree4771632d8212c815a7adb2b05f78d1cb1e340bf2 /apex/bootclasspath_fragment_test.go
parentb8410ec07c783840c26c3ea89fdb38e46c474759 (diff)
parentb51db2ed8eb3bf528e6914dd0720ee6d2ef54ee1 (diff)
Merge "Add ModuleLibHiddenAPIScope for hidden API processing"
Diffstat (limited to 'apex/bootclasspath_fragment_test.go')
-rw-r--r--apex/bootclasspath_fragment_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/apex/bootclasspath_fragment_test.go b/apex/bootclasspath_fragment_test.go
index 4c9588b72..f97404a63 100644
--- a/apex/bootclasspath_fragment_test.go
+++ b/apex/bootclasspath_fragment_test.go
@@ -848,6 +848,7 @@ func TestBootclasspathFragment_HiddenAPIList(t *testing.T) {
quuzPublicStubs := getDexJarPath(result, "quuz.stubs")
quuzSystemStubs := getDexJarPath(result, "quuz.stubs.system")
quuzTestStubs := getDexJarPath(result, "quuz.stubs.test")
+ quuzModuleLibStubs := getDexJarPath(result, "quuz.stubs.module_lib")
// Make sure that the fragment uses the quuz stub dex jars when generating the hidden API flags.
fragment := result.ModuleForTests("mybootclasspathfragment", "android_common_apex10000")
@@ -858,7 +859,7 @@ func TestBootclasspathFragment_HiddenAPIList(t *testing.T) {
// Make sure that the quuz stubs are available for resolving references from the implementation
// boot dex jars provided by this module.
- android.AssertStringDoesContain(t, "quuz widest", command, "--dependency-stub-dex="+quuzTestStubs)
+ android.AssertStringDoesContain(t, "quuz widest", command, "--dependency-stub-dex="+quuzModuleLibStubs)
// Make sure that the quuz stubs are available for resolving references from the different API
// stubs provided by this module.