From 1944e26af29bf8b633d318acb86bbce477a7f2a7 Mon Sep 17 00:00:00 2001 From: Florian Mayer Date: Fri, 21 Oct 2022 11:10:51 -0700 Subject: Disable ExceptionTest#StackTraceElement on HWASan. Test: atest art_standalone_compiler_tests on flame_hwasan Bug: 230392320 Change-Id: Iec7b895e942bae8bd6247589e92b10dda0225a70 --- compiler/exception_test.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'compiler/exception_test.cc') diff --git a/compiler/exception_test.cc b/compiler/exception_test.cc index f55ba8e0e5..9a3a2bafc9 100644 --- a/compiler/exception_test.cc +++ b/compiler/exception_test.cc @@ -14,6 +14,8 @@ * limitations under the License. */ +#include + #include #include @@ -168,6 +170,7 @@ TEST_F(ExceptionTest, FindCatchHandler) { } TEST_F(ExceptionTest, StackTraceElement) { + SKIP_WITH_HWASAN; // TODO(b/230392320): re-enable with HWASan once fixed. Thread* thread = Thread::Current(); thread->TransitionFromSuspendedToRunnable(); bool started = runtime_->Start(); -- cgit v1.2.3-59-g8ed1b