[Lldb-commits] [lldb] 007158a - Skip unreliable LLDB tests when running under asan

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 22 11:56:37 PDT 2021


Author: Adrian Prantl
Date: 2021-04-22T11:55:43-07:00
New Revision: 007158ac42c785cd59aab8bc4b4b39085b960a58

URL: https://github.com/llvm/llvm-project/commit/007158ac42c785cd59aab8bc4b4b39085b960a58
DIFF: https://github.com/llvm/llvm-project/commit/007158ac42c785cd59aab8bc4b4b39085b960a58.diff

LOG: Skip unreliable LLDB tests when running under asan

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py b/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
index 86a1693721774..a39fc0fc99df5 100644
--- a/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
+++ b/lldb/test/API/tools/lldb-server/vCont-threads/TestGdbRemote_vContThreads.py
@@ -58,6 +58,7 @@ def get_pid(self):
     @skipIfWindows
     @expectedFailureNetBSD
     @expectedFailureDarwin # No signals delivered
+    @skipIfAsan # Times out under asan
     def test_signal_process_without_tid(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -69,6 +70,7 @@ def test_signal_process_without_tid(self):
 
     @skipUnlessPlatform(["netbsd"])
     @expectedFailureNetBSD
+    @skipIfAsan # Times out under asan
     def test_signal_one_thread(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -82,6 +84,7 @@ def test_signal_one_thread(self):
     @skipIfWindows
     @expectedFailureNetBSD
     @expectedFailureDarwin # Only one signal delivered
+    @skipIfAsan # Times out under asan
     def test_signal_all_threads(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -97,6 +100,7 @@ def test_signal_all_threads(self):
     @skipIfWindows
     @expectedFailureNetBSD
     @add_test_categories(["llgs"])
+    @skipIfAsan # Times out under asan
     def test_signal_process_by_pid(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -111,6 +115,7 @@ def test_signal_process_by_pid(self):
     @skipIfWindows
     @expectedFailureNetBSD
     @add_test_categories(["llgs"])
+    @skipIfAsan # Times out under asan
     def test_signal_process_minus_one(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -136,6 +141,7 @@ def test_signal_minus_one(self):
     @skipIfWindows
     @expectedFailureNetBSD
     @add_test_categories(["llgs"])
+    @skipIfAsan # Times out under asan
     def test_signal_all_threads_by_pid(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -152,6 +158,7 @@ def test_signal_all_threads_by_pid(self):
     @skipIfWindows
     @expectedFailureNetBSD
     @add_test_categories(["llgs"])
+    @skipIfAsan # Times out under asan
     def test_signal_minus_one_by_pid(self):
         self.build()
         self.set_inferior_startup_launch()
@@ -166,6 +173,7 @@ def test_signal_minus_one_by_pid(self):
     @skipIfWindows
     @expectedFailureNetBSD
     @add_test_categories(["llgs"])
+    @skipIfAsan # Times out under asan
     def test_signal_minus_one_by_minus_one(self):
         self.build()
         self.set_inferior_startup_launch()


        


More information about the lldb-commits mailing list