Author: Michał Górny
Date: 2022-08-19T09:48:13+02:00
New Revision: 58157087b0a4fefeabd4cf6e4ee356d6152fd5a6

URL: 
https://github.com/llvm/llvm-project/commit/58157087b0a4fefeabd4cf6e4ee356d6152fd5a6
DIFF: 
https://github.com/llvm/llvm-project/commit/58157087b0a4fefeabd4cf6e4ee356d6152fd5a6.diff

LOG: [lldb] [test] Skip step packet test on non-amd64

Sponsored by: The FreeBSD Foundation

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py 
b/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
index 14147fb5b2bf..9c3fa66608d0 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestContinue.py
@@ -67,6 +67,9 @@ class MyResponder(self.BaseResponder):
         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):


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to