diff options
| author | 2020-09-21 19:38:28 +0000 | |
|---|---|---|
| committer | 2020-09-21 19:38:28 +0000 | |
| commit | 4de88a62c1b539b2de061f346ab27f9c1dfb9aa6 (patch) | |
| tree | dbc442bd4be70f0bcda699ff3ff487fdac736950 /rust/compiler_test.go | |
| parent | dba548af83861e5a41a7ec98e6885e030afe452f (diff) | |
| parent | 2b0811310eb79c98966220f2336fbd22bdef4110 (diff) | |
Merge "rust: Add libstd linkage mutator for rlibs."
Diffstat (limited to 'rust/compiler_test.go')
| -rw-r--r-- | rust/compiler_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/compiler_test.go b/rust/compiler_test.go index 56a8ef8ac..a25523c05 100644 --- a/rust/compiler_test.go +++ b/rust/compiler_test.go @@ -191,7 +191,7 @@ func TestStdDeviceLinkage(t *testing.T) { crate_name: "foo", }`) fizz := ctx.ModuleForTests("fizz", "android_arm64_armv8-a").Module().(*Module) - fooRlib := ctx.ModuleForTests("libfoo", "android_arm64_armv8-a_rlib").Module().(*Module) + fooRlib := ctx.ModuleForTests("libfoo", "android_arm64_armv8-a_rlib_dylib-std").Module().(*Module) fooDylib := ctx.ModuleForTests("libfoo", "android_arm64_armv8-a_dylib").Module().(*Module) if !android.InList("libstd", fizz.Properties.AndroidMkDylibs) { |