[Lldb-commits] [lldb] r269860 - xfail TestWatchLocation.py for arm-linux targets
Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Tue May 17 16:01:57 PDT 2016
Author: omjavaid
Date: Tue May 17 18:01:56 2016
New Revision: 269860
URL: http://llvm.org/viewvc/llvm-project?rev=269860&view=rev
Log:
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.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py?rev=269860&r1=269859&r2=269860&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py Tue May 17 18:01:56 2016
@@ -34,6 +34,7 @@ class HelloWatchLocationTestCase(TestBas
@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."""
More information about the lldb-commits
mailing list