Skip to content

Commit

Permalink
Skip TestTargetXMLArch on non-darwin OSs
Browse files Browse the repository at this point in the history
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
  • Loading branch information
labath committed Feb 12, 2018
1 parent e08f2a1 commit ca4edde
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class TestTargetXMLArch(GDBRemoteTestBase):

@skipIf(hostoslist=no_match(lldbplatformutil.getDarwinOSTriples()))
@expectedFailureAll(archs=["i386"])
def test(self):
"""
Expand Down

0 comments on commit ca4edde

Please sign in to comment.