diff options
author | Omair Javaid <omair.javaid@linaro.org> | 2016-05-25 22:30:05 +0000 |
---|---|---|
committer | Omair Javaid <omair.javaid@linaro.org> | 2016-05-25 22:30:05 +0000 |
commit | 1b356bf8984fe1b716ddd1799d629eb69a280a69 (patch) | |
tree | e76d25429f42d60f747cdfbc3e7501556710956f /lldb/packages/Python/lldbsuite/test/functionalities/watchpoint | |
parent | bd543d0a0b1a55f5b8c2d22e0c303ebc3002b9b5 (diff) | |
download | bcm5719-llvm-1b356bf8984fe1b716ddd1799d629eb69a280a69.tar.gz bcm5719-llvm-1b356bf8984fe1b716ddd1799d629eb69a280a69.zip |
Mark some aarch64-linux specific xfails marking bug entries
TestBSDArchives.py and TestWatchLocation.py fail due to unicode error and bug has already been reported for arm and macOSx.
TestConstVariables.py fails because lldb cant figure out frame variable type when used in expr.
llvm-svn: 270780
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/watchpoint')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py index 0724328f769..933f21a90bb 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py @@ -34,7 +34,7 @@ class HelloWatchLocationTestCase(TestBase): @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24446: WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows") @expectedFailureAll(triple = re.compile('^mips')) # Most of the MIPS boards provide only one H/W watchpoints, and S/W watchpoints are not supported yet @expectedFailureAll(archs=['s390x']) # SystemZ also currently supports only one H/W watchpoint - @expectedFailureAll(oslist=["linux"], archs=["arm"], bugnumber="llvm.org/pr27795") + @expectedFailureAll(oslist=["linux"], archs=["arm", "aarch64"], bugnumber="llvm.org/pr27795") @skipIfDarwin def test_hello_watchlocation(self): """Test watching a location with '-s size' option.""" |