diff options
author | Zachary Turner <zturner@google.com> | 2015-05-22 19:33:32 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-05-22 19:33:32 +0000 |
commit | 101a82bf8b4dd1860b0a56c15c6d0499b502fe03 (patch) | |
tree | 197fdee2547ca177c909d0ac3305f51565057af2 | |
parent | 0b0106bb9b72f97ebdb4255038c10f133e390411 (diff) | |
download | bcm5719-llvm-101a82bf8b4dd1860b0a56c15c6d0499b502fe03.tar.gz bcm5719-llvm-101a82bf8b4dd1860b0a56c15c6d0499b502fe03.zip |
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.
llvm-svn: 238040
-rw-r--r-- | lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py index 25a47ff05bc..6822cf0fb65 100644 --- a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py +++ b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py @@ -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 ) - +@skipIfWindows class ConcurrentEventsTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) |