[Lldb-commits] [lldb] r238040 - Disable TestConcurrentEvents.py on Windows.

Zachary Turner zturner at google.com
Fri May 22 12:33:32 PDT 2015


Author: zturner
Date: Fri May 22 14:33:32 2015
New Revision: 238040

URL: http://llvm.org/viewvc/llvm-project?rev=238040&view=rev
Log:
Disable TestConcurrentEvents.py on Windows.

This test takes over 5 minutes to run just by itself, and everything
fails anyway, so it doesn't make sense to keep it running for now.

Modified:
    lldb/trunk/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py

Modified: lldb/trunk/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py?rev=238040&r1=238039&r2=238040&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py (original)
+++ lldb/trunk/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py Fri May 22 14:33:32 2015
@@ -22,7 +22,7 @@ import lldbutil
 signal_names = dict((getattr(signal, n), n) \
         for n in dir(signal) if n.startswith('SIG') and '_' not in n )
 
-
+ at skipIfWindows
 class ConcurrentEventsTestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)





More information about the lldb-commits mailing list