Skip tests under asan
authorAdrian Prantl <aprantl@apple.com>
Wed, 5 Apr 2023 16:00:46 +0000 (09:00 -0700)
committerAdrian Prantl <aprantl@apple.com>
Wed, 5 Apr 2023 16:00:55 +0000 (09:00 -0700)
lldb/test/API/lang/c/full_lto_stepping/TestFullLtoStepping.py
lldb/test/API/macosx/universal64/TestUniversal64.py

index afd0365..f9bf008 100644 (file)
@@ -8,6 +8,8 @@ import lldbsuite.test.lldbutil as lldbutil
 
 class TestFullLtoStepping(TestBase):
 
+    # The Makefile manually invokes clang.
+    @skipIfAsan
     @skipIf(compiler=no_match("clang"))
     @skipIf(compiler="clang", compiler_version=['<', '13.0'])
     @skipUnlessDarwin
index 80292c0..2296ac8 100644 (file)
@@ -16,6 +16,8 @@ class Universal64TestCase(TestBase):
         # The dynamic loader doesn't support fat64 executables so we can't
         # actually launch them here.
 
+    # The Makefile manually invokes clang.
+    @skipIfAsan
     @skipUnlessDarwin
     @skipIfDarwinEmbedded
     @skipIf(macos_version=["<", "11.0"])
@@ -24,6 +26,8 @@ class Universal64TestCase(TestBase):
         self.build(debug_info="dsym")
         self.do_test()
 
+    # The Makefile manually invokes clang.
+    @skipIfAsan
     @skipUnlessDarwin
     @skipIfDarwinEmbedded
     @skipIf(macos_version=["<", "11.0"])