diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-09-26 19:05:08 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-09-26 19:05:08 +0000 |
| commit | 7da349d3a18763fb7a8bfae6961c047d235b4993 (patch) | |
| tree | c2715ef00db9ba05594ad80c9515ff45799d3f4a /lldb/test/python_api | |
| parent | b40da7f9563763bbd40b08d2a638a46862c83afd (diff) | |
| download | bcm5719-llvm-7da349d3a18763fb7a8bfae6961c047d235b4993.tar.gz bcm5719-llvm-7da349d3a18763fb7a8bfae6961c047d235b4993.zip | |
Remove the @expectedFailureClang custom decorator for indicating clang-specific test failures.
It has been fixed on the lldb side to compensate for bad debug info (line table information).
llvm-svn: 140550
Diffstat (limited to 'lldb/test/python_api')
| -rw-r--r-- | lldb/test/python_api/thread/TestThreadAPI.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/test/python_api/thread/TestThreadAPI.py b/lldb/test/python_api/thread/TestThreadAPI.py index 59244694951..ed7f002c3ce 100644 --- a/lldb/test/python_api/thread/TestThreadAPI.py +++ b/lldb/test/python_api/thread/TestThreadAPI.py @@ -77,7 +77,6 @@ class ThreadAPITestCase(TestBase): self.step_out_of_malloc_into_function_b(self.exe_name) @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") - @expectedFailureClang @python_api_test def test_step_over_3_times_with_dsym(self): """Test Python SBThread.StepOver() API.""" @@ -87,7 +86,6 @@ class ThreadAPITestCase(TestBase): self.setTearDownCleanup(dictionary=d) self.step_over_3_times(self.exe_name) - @expectedFailureClang @python_api_test def test_step_over_3_times_with_dwarf(self): """Test Python SBThread.StepOver() API.""" @@ -225,6 +223,9 @@ class ThreadAPITestCase(TestBase): self.assertTrue(thread.GetStopReason() == lldb.eStopReasonPlanComplete) # Expected failure with clang as the compiler. # rdar://problem/9223880 + # + # Which has been fixed on the lldb by compensating for inaccurate line + # table information with r140416. self.assertTrue(lineEntry.GetLine() == self.after_3_step_overs) def run_to_address(self, exe_name): |

