aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordimitry <dimitry@google.com>2022-11-07 16:47:50 +0100
committerdimitry <dimitry@google.com>2022-11-07 18:39:42 +0100
commitdd64a6e28af488ee25ff5d5acb2287413f55b05e (patch)
tree6c836afde11cf68af8e67f35712a12e597fd649f
parentd06e75b7e304dd6e3017d61bc5c9b92857b41b89 (diff)
downloadbionic-dd64a6e28af488ee25ff5d5acb2287413f55b05e.tar.gz
Disable MemtagNoteTest#SEGV for native bridge
This commit disables MemtagNoteTest#SEGV when running on native bridge. Bug: http://b/242170715 Test: run arm64 Bionic tests on T Emulator Change-Id: I8ae99c5ba22f09a8d7e751f8bb4938894abe231f
-rw-r--r--tests/heap_tagging_level_test.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/heap_tagging_level_test.cpp b/tests/heap_tagging_level_test.cpp
index 96c2ffd0b..ae678b7b5 100644
--- a/tests/heap_tagging_level_test.cpp
+++ b/tests/heap_tagging_level_test.cpp
@@ -222,6 +222,7 @@ class MemtagNoteTest : public testing::TestWithParam<std::tuple<MemtagNote, bool
TEST_P(MemtagNoteTest, SEGV) {
#if defined(__BIONIC__) && defined(__aarch64__)
+ SKIP_WITH_NATIVE_BRIDGE; // http://b/242170715
// Note that we do not check running_with_hwasan() - what matters here is whether the test binary
// itself is built with HWASan.
bool withHWASAN = __has_feature(hwaddress_sanitizer);