diff options
author | 2024-05-08 06:49:33 +0000 | |
---|---|---|
committer | 2024-05-08 06:49:33 +0000 | |
commit | a71b90cf810cfdd2bc74e7fcf7a2741fce14ff4f (patch) | |
tree | 84a118a270566f611aaad23b92f5b703ae94fe6e /java/app_test.go | |
parent | 4f63dc7904de8346a99dc8fbe8833ba851f1df31 (diff) |
Revert "Always embed jni libs and store uncompressed"
Revert submission 3075263
Reason for revert: verifying the test failure b/339332424
Reverted changes: /q/submissionid:3075263
Change-Id: I0e1a526893ee6c591eaefadcee4bbbf321dfc1df
Diffstat (limited to 'java/app_test.go')
-rw-r--r-- | java/app_test.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/java/app_test.go b/java/app_test.go index 938b88aba..eab40e7da 100644 --- a/java/app_test.go +++ b/java/app_test.go @@ -2013,8 +2013,8 @@ func TestJNIPackaging(t *testing.T) { packaged bool compressed bool }{ - {"app", true, false}, - {"app_noembed", true, false}, + {"app", false, false}, + {"app_noembed", false, false}, {"app_embed", true, false}, {"test", true, false}, {"test_noembed", true, true}, @@ -3319,7 +3319,8 @@ func TestUsesLibraries(t *testing.T) { // These also include explicit `uses_libs`/`optional_uses_libs` entries, as they may be // propagated from dependencies. actualManifestFixerArgs := app.Output("manifest_fixer/AndroidManifest.xml").Args["args"] - expectManifestFixerArgs := `--uses-library foo ` + + expectManifestFixerArgs := `--extract-native-libs=true ` + + `--uses-library foo ` + `--uses-library com.non.sdk.lib ` + `--uses-library qux ` + `--uses-library quuz ` + @@ -4109,7 +4110,7 @@ func TestAppIncludesJniPackages(t *testing.T) { }, { name: "aary-no-use-embedded", - hasPackage: true, + hasPackage: false, }, } |