Remove decorators for llvm.org/pr17920 fixed by r200646
authorEd Maste <emaste@freebsd.org>
Tue, 11 Feb 2014 18:34:26 +0000 (18:34 +0000)
committerEd Maste <emaste@freebsd.org>
Tue, 11 Feb 2014 18:34:26 +0000 (18:34 +0000)
llvm-svn: 201167

lldb/test/functionalities/thread/concurrent_events/TestConcurrentEvents.py
lldb/test/functionalities/thread/step_out/TestThreadStepOut.py

index d95a6bc..59a393e 100644 (file)
@@ -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. """
index 82e3530..77396a9 100644 (file)
@@ -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)."""