Skip to content

Commit 58fc802

Browse files
committed
[lldb] Skip TestStepUntilAPI on !x86_64, !aarch64
The compiler does not support this feature on other architectures.
1 parent 61f94eb commit 58fc802

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def test_hitting(self):
7373
self._do_until(None, None, self.less_than_two, self.less_than_two)
7474

7575
@skipIf(oslist=lldbplatformutil.getDarwinOSTriples() + ["windows"])
76+
@skipIf(archs=no_match(["x86_64", "aarch64"]))
7677
def test_hitting_discontinuous(self):
7778
"""Test SBThread.StepOverUntil - targeting a line and hitting it -- with
7879
discontinuous functions"""
@@ -91,6 +92,7 @@ def test_missing(self):
9192
)
9293

9394
@skipIf(oslist=lldbplatformutil.getDarwinOSTriples() + ["windows"])
95+
@skipIf(archs=no_match(["x86_64", "aarch64"]))
9496
def test_missing_discontinuous(self):
9597
"""Test SBThread.StepOverUntil - targeting a line and missing it by
9698
stepping out to call site -- with discontinuous functions"""
@@ -117,6 +119,7 @@ def test_bad_line(self):
117119
)
118120

119121
@skipIf(oslist=lldbplatformutil.getDarwinOSTriples() + ["windows"])
122+
@skipIf(archs=no_match(["x86_64", "aarch64"]))
120123
def test_bad_line_discontinuous(self):
121124
"""Test that we get an error if attempting to step outside the current
122125
function -- and the function is discontinuous"""

0 commit comments

Comments
 (0)