diff options
author | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2019-12-13 12:03:29 +0500 |
---|---|---|
committer | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2019-12-13 12:30:58 +0500 |
commit | 5536c62f3c35015802dd59150d422c4ab79db581 (patch) | |
tree | 919ce8171119d4c706aecff556fb8a5ff8c5aa33 /lldb/packages/Python/lldbsuite/test/functionalities/breakpoint | |
parent | 69da7e29dea659563f3b64edb7b45cb2aec817c2 (diff) | |
download | bcm5719-llvm-5536c62f3c35015802dd59150d422c4ab79db581.tar.gz bcm5719-llvm-5536c62f3c35015802dd59150d422c4ab79db581.zip |
[lldb] Remove xpasses after pr44037 fix committed
This patch removes xpass decorator from tests which were failing due to
pr44037.
pr44037 was fixed by rev 6ce1a897b6a82e18059fd3b75b8d52ff12c2a605
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/breakpoint')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py index 1dc12e94eaf..2a5c111d582 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py @@ -16,26 +16,16 @@ class BreakpointLocationsTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24528") - @expectedFailureAll(archs=["aarch64"], oslist=["linux"], - debug_info=["dwo"], - bugnumber="llvm.org/pr44037") def test_enable(self): """Test breakpoint enable/disable for a breakpoint ID with multiple locations.""" self.build() self.breakpoint_locations_test() - @expectedFailureAll(archs=["aarch64"], oslist=["linux"], - debug_info=["dwo"], - bugnumber="llvm.org/pr44037") def test_shadowed_cond_options(self): """Test that options set on the breakpoint and location behave correctly.""" self.build() self.shadowed_bkpt_cond_test() - - @expectedFailureAll(archs=["aarch64"], oslist=["linux"], - debug_info=["dwo"], - bugnumber="llvm.org/pr44037") def test_shadowed_command_options(self): """Test that options set on the breakpoint and location behave correctly.""" self.build() |