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
This commit is contained in:
Omair Javaid 2016-05-17 23:01:56 +00:00
parent 101772128a
commit c675cfa8a9
1 changed files with 1 additions and 0 deletions

View File

@ -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."""