summaryrefslogtreecommitdiff
path: root/rust/coverage_test.go
diff options
context:
space:
mode:
author Ivan Lozano <ivanlozano@google.com> 2020-09-21 19:38:28 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-09-21 19:38:28 +0000
commit4de88a62c1b539b2de061f346ab27f9c1dfb9aa6 (patch)
treedbc442bd4be70f0bcda699ff3ff487fdac736950 /rust/coverage_test.go
parentdba548af83861e5a41a7ec98e6885e030afe452f (diff)
parent2b0811310eb79c98966220f2336fbd22bdef4110 (diff)
Merge "rust: Add libstd linkage mutator for rlibs."
Diffstat (limited to 'rust/coverage_test.go')
-rw-r--r--rust/coverage_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/coverage_test.go b/rust/coverage_test.go
index 73673d035..90155ca6e 100644
--- a/rust/coverage_test.go
+++ b/rust/coverage_test.go
@@ -154,12 +154,12 @@ func TestCoverageZip(t *testing.T) {
}
// Make sure the expected inputs are provided to the zip rule.
- if !android.SuffixInList(fizzZipInputs, "android_arm64_armv8-a_rlib_cov/librlib.gcno") ||
+ if !android.SuffixInList(fizzZipInputs, "android_arm64_armv8-a_rlib_dylib-std_cov/librlib.gcno") ||
!android.SuffixInList(fizzZipInputs, "android_arm64_armv8-a_static_cov/libbaz.gcno") ||
!android.SuffixInList(fizzZipInputs, "android_arm64_armv8-a_cov/fizz.gcno") {
t.Fatalf("missing expected coverage files for rust 'fizz' binary: %#v", fizzZipInputs)
}
- if !android.SuffixInList(libfooZipInputs, "android_arm64_armv8-a_rlib_cov/librlib.gcno") ||
+ if !android.SuffixInList(libfooZipInputs, "android_arm64_armv8-a_rlib_dylib-std_cov/librlib.gcno") ||
!android.SuffixInList(libfooZipInputs, "android_arm64_armv8-a_dylib_cov/libfoo.dylib.gcno") {
t.Fatalf("missing expected coverage files for rust 'fizz' binary: %#v", libfooZipInputs)
}