[Lldb-commits] [lldb] r370136 - [test] Disable TestConcurrentManySignals on Darwin.

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 27 17:35:37 PDT 2019


Author: jdevlieghere
Date: Tue Aug 27 17:35:37 2019
New Revision: 370136

URL: http://llvm.org/viewvc/llvm-project?rev=370136&view=rev
Log:
[test] Disable TestConcurrentManySignals on Darwin.

This test is flaky on GreenDragon. Disable it until we figure out why.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py?rev=370136&r1=370135&r2=370136&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py Tue Aug 27 17:35:37 2019
@@ -14,6 +14,8 @@ class ConcurrentManySignals(ConcurrentEv
 
     # Atomic sequences are not supported yet for MIPS in LLDB.
     @skipIf(triple='^mips')
+    # This test is flaky on Darwin.
+    @skipIfDarwin
     def test(self):
         """Test 100 signals from 100 threads."""
         self.build(dictionary=self.getBuildFlags())




More information about the lldb-commits mailing list