diff options
author | Omair Javaid <omair.javaid@linaro.org> | 2016-05-11 13:57:20 +0000 |
---|---|---|
committer | Omair Javaid <omair.javaid@linaro.org> | 2016-05-11 13:57:20 +0000 |
commit | 86e0dd5c1caff448c8cdbba3796ea8ed49f71c83 (patch) | |
tree | 3289062194fd20c16dfafb99cd1d6b4ac2e3e6a0 /lldb/packages/Python/lldbsuite/test/python_api | |
parent | 02699f3f3dcf2d90731293d7e51477d3b7547e83 (diff) | |
download | bcm5719-llvm-86e0dd5c1caff448c8cdbba3796ea8ed49f71c83.tar.gz bcm5719-llvm-86e0dd5c1caff448c8cdbba3796ea8ed49f71c83.zip |
Xfail failing watchpoint tests on aarch64-linux
Some watchpoint tests fail on aarch64-linux as it lacks support for intalling watchpoints which are not alligned at 8bytes boundary.
Marking them as xfail for now.
llvm-svn: 269187
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py b/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py index 78524bace2e..b368cc06661 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py @@ -30,6 +30,7 @@ class WatchpointConditionAPITestCase(TestBase): self.d = {'CXX_SOURCES': self.source, 'EXE': self.exe_name} @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported + @expectedFailureAll(oslist=["linux"], archs=["aarch64"], bugnumber="llvm.org/pr27710") @skipIfWindows # Watchpoints not supported on Windows, and this test hangs def test_watchpoint_cond_api(self): """Test watchpoint condition API.""" |