summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities/thread
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2015-04-22 12:21:06 +0000
committerPavel Labath <labath@google.com>2015-04-22 12:21:06 +0000
commit5c3c43afc11399e2ce4b288d802640aec4a1df1f (patch)
treeb344407d31e458553b7a5e2bacbed53f7c7dfd20 /lldb/test/functionalities/thread
parent9e4b820484c2e0a099b9dd4f693728a88e1bc046 (diff)
downloadbcm5719-llvm-5c3c43afc11399e2ce4b288d802640aec4a1df1f.tar.gz
bcm5719-llvm-5c3c43afc11399e2ce4b288d802640aec4a1df1f.zip
Enable TestConcurrentEvents on Linux
After the latest changes in NativeProcessLinux, these tests should be stable now. Please revert (and let me know) if any issue crops up. llvm-svn: 235502
Diffstat (limited to 'lldb/test/functionalities/thread')
-rw-r--r--lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
index 5fae24048cb..83c1a303504 100644
--- a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
+++ b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
@@ -38,7 +38,6 @@ class ConcurrentEventsTestCase(TestBase):
self.do_thread_actions(num_breakpoint_threads=100)
@unittest2.skipIf(TestBase.skipLongRunningTest(), "Skip this long running test")
- @expectedFailureLinux('llvm.org/pr16714')
@dwarf_test
def test_many_watchpoints_dwarf(self):
"""Test 100 watchpoints from 100 threads."""
@@ -87,7 +86,6 @@ class ConcurrentEventsTestCase(TestBase):
#
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_watch_break_dwarf(self):
"""Test watchpoint and a breakpoint in multiple threads."""
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -95,7 +93,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_delay_watch_break_dwarf(self):
"""Test (1-second delay) watchpoint and a breakpoint in multiple threads."""
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -103,7 +100,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_watch_break_dwarf_delay(self):
"""Test watchpoint and a (1 second delay) breakpoint in multiple threads."""
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -114,7 +110,6 @@ class ConcurrentEventsTestCase(TestBase):
#
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_signal_watch_dwarf(self):
"""Test a watchpoint and a signal in multiple threads."""
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -122,7 +117,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_delay_signal_watch_dwarf(self):
"""Test a watchpoint and a (1 second delay) signal in multiple threads."""
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -130,7 +124,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_signal_delay_watch_dwarf(self):
"""Test a (1 second delay) watchpoint and a signal in multiple threads."""
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -175,7 +168,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_two_breakpoints_one_watchpoint_dwarf(self):
"""Test two threads that trigger a breakpoint and one watchpoint thread. """
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -183,7 +175,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_breakpoints_delayed_breakpoint_one_watchpoint_dwarf(self):
"""Test a breakpoint, a delayed breakpoint, and one watchpoint thread. """
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -196,7 +187,6 @@ class ConcurrentEventsTestCase(TestBase):
#
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_two_watchpoint_threads_dwarf(self):
"""Test two threads that trigger a watchpoint. """
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -204,7 +194,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_watchpoint_with_delay_watchpoint_threads_dwarf(self):
"""Test two threads that trigger a watchpoint where one thread has a 1 second delay. """
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -213,7 +202,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_two_watchpoints_one_breakpoint_dwarf(self):
"""Test two threads that trigger a watchpoint and one breakpoint thread. """
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -221,7 +209,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_two_watchpoints_one_delay_breakpoint_dwarf(self):
"""Test two threads that trigger a watchpoint and one (1 second delay) breakpoint thread. """
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -229,7 +216,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_watchpoint_delay_watchpoint_one_breakpoint_dwarf(self):
"""Test two threads that trigger a watchpoint (one with a 1 second delay) and one breakpoint thread. """
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -239,7 +225,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_two_watchpoints_one_signal_dwarf(self):
"""Test two threads that trigger a watchpoint and one signal thread. """
self.buildDwarf(dictionary=self.getBuildFlags())
@@ -268,7 +253,6 @@ class ConcurrentEventsTestCase(TestBase):
@dwarf_test
@skipIfRemoteDueToDeadlock
- @expectedFailureLinux('llvm.org/pr16714')
def test_signal_watch_break_dwarf(self):
"""Test with 5 watchpoint and breakpoint threads."""
self.buildDwarf(dictionary=self.getBuildFlags())
OpenPOWER on IntegriCloud