ART: Disable parts of tests under sanitization

Native memory tracking is not functional under sanitization. Disable
the dex2oat swap test, as it will receive zeros.

Stacktrace dumping relies on libunwind, which may try to read arbitrary
memory. Disable the SigQuit test in runtime_callbacks_test.

Bug: 31098551
Test: m SANITIZE_HOST=address test-art-host-gtest
Change-Id: I353820b93389cdb020083bc88601d99fbd117de8
diff --git a/runtime/runtime_callbacks_test.cc b/runtime/runtime_callbacks_test.cc
index abe99e0..640f9ce 100644
--- a/runtime/runtime_callbacks_test.cc
+++ b/runtime/runtime_callbacks_test.cc
@@ -335,6 +335,9 @@
 };
 
 TEST_F(RuntimeSigQuitCallbackRuntimeCallbacksTest, SigQuit) {
+  // SigQuit induces a dump. ASAN isn't happy with libunwind reading memory.
+  TEST_DISABLED_FOR_MEMORY_TOOL_ASAN();
+
   // The runtime needs to be started for the signal handler.
   Thread* self = Thread::Current();