[Lldb-commits] [lldb] r201167 - Remove decorators for llvm.org/pr17920 fixed by r200646
Ed Maste
emaste at freebsd.org
Tue Feb 11 10:34:26 PST 2014
Author: emaste
Date: Tue Feb 11 12:34:26 2014
New Revision: 201167
URL: http://llvm.org/viewvc/llvm-project?rev=201167&view=rev
Log:
Remove decorators for llvm.org/pr17920 fixed by r200646
Modified:
lldb/trunk/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.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=201167&r1=201166&r2=201167&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py (original)
+++ lldb/trunk/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py Tue Feb 11 12:34:26 2014
@@ -146,14 +146,12 @@ class ConcurrentEventsTestCase(TestBase)
#
## Tests for multiple breakpoint threads
#
- @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build
@dwarf_test
def test_two_breakpoint_threads_dwarf(self):
"""Test two threads that trigger a breakpoint. """
self.buildDwarf(dictionary=self.getBuildFlags())
self.do_thread_actions(num_breakpoint_threads=2)
- @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build
@dwarf_test
def test_breakpoint_one_delay_breakpoint_threads_dwarf(self):
"""Test threads that trigger a breakpoint where one thread has a 1 second delay. """
@@ -175,7 +173,6 @@ class ConcurrentEventsTestCase(TestBase)
num_delay_breakpoint_threads=1,
num_signal_threads=1)
- @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build
@dwarf_test
def test_two_breakpoints_one_delay_signal_dwarf(self):
"""Test two threads that trigger a breakpoint and one (1 second delay) signal thread. """
@@ -299,7 +296,6 @@ class ConcurrentEventsTestCase(TestBase)
#
## Test for crashing threads happening concurrently with other events
#
- @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build
@dwarf_test
def test_crash_with_break_dwarf(self):
""" Test a thread that crashes while another thread hits a breakpoint."""
@@ -315,7 +311,6 @@ class ConcurrentEventsTestCase(TestBase)
self.buildDwarf(dictionary=self.getBuildFlags())
self.do_thread_actions(num_crash_threads=1, num_watchpoint_threads=1)
- @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build
@dwarf_test
def test_crash_with_signal_dwarf(self):
""" Test a thread that crashes while another thread generates a signal."""
@@ -345,7 +340,6 @@ class ConcurrentEventsTestCase(TestBase)
num_breakpoint_threads=1,
num_watchpoint_threads=1)
- @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build
@dwarf_test
def test_delayed_crash_with_breakpoint_signal_dwarf(self):
""" Test a thread with a delayed crash while other threads generate a signal and hit a breakpoint. """
Modified: lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py?rev=201167&r1=201166&r2=201167&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py (original)
+++ lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py Tue Feb 11 12:34:26 2014
@@ -31,7 +31,6 @@ class ThreadStepOutTestCase(TestBase):
self.buildDsym(dictionary=self.getBuildFlags())
self.step_out_test(self.step_out_all_threads_with_cmd)
- @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build
@dwarf_test
def test_step_all_threads_with_dwarf(self):
"""Test thread step out on all threads via command interpreter. """
@@ -44,7 +43,6 @@ class ThreadStepOutTestCase(TestBase):
self.buildDsym(dictionary=self.getBuildFlags())
self.step_out_test(self.step_out_with_python)
- @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build
@dwarf_test
def test_python_with_dwarf(self):
"""Test thread step out on one thread via Python API (dwarf)."""
More information about the lldb-commits
mailing list