forked from OSchip/llvm-project
Remove decorators for llvm.org/pr17920 fixed by r200646
llvm-svn: 201167
This commit is contained in:
parent
8744d38ee8
commit
65edfe3ed1
|
@ -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. """
|
||||
|
|
|
@ -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)."""
|
||||
|
|
Loading…
Reference in New Issue