diff options
author | Omair Javaid <omair.javaid@linaro.org> | 2016-05-17 23:01:56 +0000 |
---|---|---|
committer | Omair Javaid <omair.javaid@linaro.org> | 2016-05-17 23:01:56 +0000 |
commit | c675cfa8a976e2cd6881b32c84051968115e4221 (patch) | |
tree | c3f1afca69b358c68694a4e87e5588be13cc7bb3 /lldb/packages/Python/lldbsuite/test | |
parent | 101772128a21246571d8874fb59386e25187623f (diff) | |
download | bcm5719-llvm-c675cfa8a976e2cd6881b32c84051968115e4221.tar.gz bcm5719-llvm-c675cfa8a976e2cd6881b32c84051968115e4221.zip |
xfail TestWatchLocation.py for arm-linux targets
TestWatchLocation.py fails on arm-linux target due to unicode error in lldb testsuite.
This is a known issue and same test fails on OS X with similar reason.
I have reported a bug and marked this test as xfail for arm-linux targets.
llvm-svn: 269860
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py | 1 |
1 files changed, 1 insertions, 0 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 4183e18e758..0724328f769 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,6 +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") @skipIfDarwin def test_hello_watchlocation(self): """Test watching a location with '-s size' option.""" |