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
This commit is contained in:
parent
09db6416bc
commit
2cc2910e70
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue