Merge changes I26198187,Ia904d07b

* changes:
  rust: Support MTE memtag_heap sanitizer
  rust: Support global sanitizers
This commit is contained in:
Ivan Lozano
2021-11-12 19:26:04 +00:00
committed by Gerrit Code Review
10 changed files with 612 additions and 34 deletions

View File

@@ -442,3 +442,10 @@ func TestLibrarySizes(t *testing.T) {
m.Output("unstripped/libwaldo.dylib.so.bloaty.csv")
m.Output("libwaldo.dylib.so.bloaty.csv")
}
func assertString(t *testing.T, got, expected string) {
t.Helper()
if got != expected {
t.Errorf("expected %q got %q", expected, got)
}
}