Skip to content

Commit ca4edde

Browse files
committedFeb 12, 2018
Skip TestTargetXMLArch on non-darwin OSs
This test uses XML packets, but libxml is an optional dependency of lldb, and this test fails if it is not present. I'm leaving this enabled on mac, as thats the only platform that's likely to have libxml always available, but ideally we should have a way to skip this based on build configuration. I'll see if I can whip something like that up soon, but for the time being, this unblocks the buildbots. llvm-svn: 324870
1 parent e08f2a1 commit ca4edde

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
class TestTargetXMLArch(GDBRemoteTestBase):
88

9+
@skipIf(hostoslist=no_match(lldbplatformutil.getDarwinOSTriples()))
910
@expectedFailureAll(archs=["i386"])
1011
def test(self):
1112
"""

0 commit comments

Comments
 (0)