diff options
author | Ed Maste <emaste@freebsd.org> | 2014-02-02 19:29:50 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2014-02-02 19:29:50 +0000 |
commit | cc8068f2ac84c8c40b327775292bacf31c6384d0 (patch) | |
tree | 40b2bf20d0dc1fd9fa6671a14e8d0742a06c68cd | |
parent | 10c82017b670e5e54d5e6ce497dee2321c909b12 (diff) | |
download | bcm5719-llvm-cc8068f2ac84c8c40b327775292bacf31c6384d0.tar.gz bcm5719-llvm-cc8068f2ac84c8c40b327775292bacf31c6384d0.zip |
Remove failure decorators for FreeBSD bug
The issue described in llvm.org/pr18065 is actually due to FreeBSD bug
theads/186309 [1], which is now fixed in FreeBSD SVN r261354 [2] and will
be merged to release branches shortly.
Diagnosed and fixed by John Wolfe.
[1] http://www.freebsd.org/cgi/query-pr.cgi?pr=186309
[2] http://svnweb.freebsd.org/base?view=revision&revision=261354
llvm-svn: 200648
-rw-r--r-- | lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py index a217e4a81c2..d95a6bc0d6d 100644 --- a/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py +++ b/lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py @@ -63,21 +63,18 @@ class ConcurrentEventsTestCase(TestBase): # ## Tests for concurrent signal and breakpoint # - @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build @dwarf_test def test_signal_break_dwarf(self): """Test signal and a breakpoint in multiple threads.""" self.buildDwarf(dictionary=self.getBuildFlags()) self.do_thread_actions(num_breakpoint_threads=1, num_signal_threads=1) - @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build @dwarf_test def test_delay_signal_break_dwarf(self): """Test (1-second delay) signal and a breakpoint in multiple threads.""" self.buildDwarf(dictionary=self.getBuildFlags()) self.do_thread_actions(num_breakpoint_threads=1, num_delay_signal_threads=1) - @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build @dwarf_test def test_signal_delay_break_dwarf(self): """Test signal and a (1 second delay) breakpoint in multiple threads.""" @@ -164,14 +161,12 @@ class ConcurrentEventsTestCase(TestBase): self.do_thread_actions(num_breakpoint_threads=1, num_delay_breakpoint_threads=1) - @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build @dwarf_test def test_two_breakpoints_one_signal_dwarf(self): """Test two threads that trigger a breakpoint and one signal thread. """ self.buildDwarf(dictionary=self.getBuildFlags()) self.do_thread_actions(num_breakpoint_threads=2, num_signal_threads=1) - @expectedFailureFreeBSD("llvm.org/pr17910") # fails to build @dwarf_test def test_breakpoint_delay_breakpoint_one_signal_dwarf(self): """Test two threads that trigger a breakpoint (one with a 1 second delay) and one signal thread. """ |