[lldb] [test] Skip step packet test on non-amd64
authorMichał Górny <mgorny@moritz.systems>
Fri, 19 Aug 2022 07:39:56 +0000 (09:39 +0200)
committerMichał Górny <mgorny@moritz.systems>
Fri, 19 Aug 2022 07:48:13 +0000 (09:48 +0200)
Sponsored by: The FreeBSD Foundation

lldb/test/API/functionalities/gdb_remote_client/TestContinue.py

index 14147fb..9c3fa66 100644 (file)
@@ -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):