[Lldb-commits] [lldb] 58fc802 - [lldb] Skip TestStepUntilAPI on !x86_64, !aarch64

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 17 04:07:49 PST 2025


Author: Pavel Labath
Date: 2025-01-17T13:07:06+01:00
New Revision: 58fc8029e91bf56811444d4a37a8f517a43bdc11

URL: https://github.com/llvm/llvm-project/commit/58fc8029e91bf56811444d4a37a8f517a43bdc11
DIFF: https://github.com/llvm/llvm-project/commit/58fc8029e91bf56811444d4a37a8f517a43bdc11.diff

LOG: [lldb] Skip TestStepUntilAPI on !x86_64, !aarch64

The compiler does not support this feature on other architectures.

Added: 
    

Modified: 
    lldb/test/API/functionalities/thread/step_until/TestStepUntilAPI.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/thread/step_until/TestStepUntilAPI.py b/lldb/test/API/functionalities/thread/step_until/TestStepUntilAPI.py
index de3892ed278f80..59e028acf014c7 100644
--- a/lldb/test/API/functionalities/thread/step_until/TestStepUntilAPI.py
+++ b/lldb/test/API/functionalities/thread/step_until/TestStepUntilAPI.py
@@ -73,6 +73,7 @@ def test_hitting(self):
         self._do_until(None, None, self.less_than_two, self.less_than_two)
 
     @skipIf(oslist=lldbplatformutil.getDarwinOSTriples() + ["windows"])
+    @skipIf(archs=no_match(["x86_64", "aarch64"]))
     def test_hitting_discontinuous(self):
         """Test SBThread.StepOverUntil - targeting a line and hitting it -- with
         discontinuous functions"""
@@ -91,6 +92,7 @@ def test_missing(self):
         )
 
     @skipIf(oslist=lldbplatformutil.getDarwinOSTriples() + ["windows"])
+    @skipIf(archs=no_match(["x86_64", "aarch64"]))
     def test_missing_discontinuous(self):
         """Test SBThread.StepOverUntil - targeting a line and missing it by
         stepping out to call site -- with discontinuous functions"""
@@ -117,6 +119,7 @@ def test_bad_line(self):
         )
 
     @skipIf(oslist=lldbplatformutil.getDarwinOSTriples() + ["windows"])
+    @skipIf(archs=no_match(["x86_64", "aarch64"]))
     def test_bad_line_discontinuous(self):
         """Test that we get an error if attempting to step outside the current
         function -- and the function is discontinuous"""


        


More information about the lldb-commits mailing list