diff options
author | Florian Mayer <fmayer@google.com> | 2022-04-06 00:24:31 +0000 |
---|---|---|
committer | Florian Mayer <fmayer@google.com> | 2022-04-06 00:55:53 +0000 |
commit | 24f276211dce7b83ae0c1e2cc337cdb5ff46bcd5 (patch) | |
tree | 9a95672eed8c41fe92f4fd1955fa25f0b293a31d /libc/malloc_hooks/tests/malloc_hooks_tests.cpp | |
parent | 6c378ec6b5bbced891de491695bb1c6b2d8cc304 (diff) |
Skip other_malloc_functions on HWASan.
Bug: 227801493
Change-Id: I98b0c2d1a9dc450b97d2de5c02c68bcfd38088bf
Diffstat (limited to 'libc/malloc_hooks/tests/malloc_hooks_tests.cpp')
-rw-r--r-- | libc/malloc_hooks/tests/malloc_hooks_tests.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/malloc_hooks/tests/malloc_hooks_tests.cpp b/libc/malloc_hooks/tests/malloc_hooks_tests.cpp index ca064c2fe..d16270fc6 100644 --- a/libc/malloc_hooks/tests/malloc_hooks_tests.cpp +++ b/libc/malloc_hooks/tests/malloc_hooks_tests.cpp @@ -178,6 +178,7 @@ void MallocHooksTest::test_free_hook(void* ptr, const void* arg) { } TEST_F(MallocHooksTest, other_malloc_functions) { + SKIP_WITH_HWASAN; // HWASan does not implement mallinfo. RunTest("*.DISABLED_other_malloc_functions"); } |