forked from OSchip/llvm-project
[lldb] [test] Skip step packet test on non-amd64
Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
84517b6fb1
commit
58157087b0
|
@ -67,6 +67,9 @@ class TestContinue(GDBRemoteTestBase):
|
|||
process = self.connect(target)
|
||||
self.assertPacketLogContains(["vCont;C13:p400.401"])
|
||||
|
||||
# uses 'S13' instead of 's' arm (the pc dance?), testing it on one
|
||||
# arch should be entirely sufficient
|
||||
@skipIf(archs=no_match(["x86_64"]))
|
||||
def test_step_multiprocess(self):
|
||||
class MyResponder(self.BaseResponder):
|
||||
def other(self, packet):
|
||||
|
|
Loading…
Reference in New Issue