Skip to content

Commit 23a09b9

Browse files
committed
[lldb][Test] Remove some xfails for AArch64 Linux
PR #92245 fixed these tests on Linux. They likely work on FreeBSD too but leaving the xfail for that so it can be confirmed later. Also updated a bugzilla link to one that redirects to Github issues. Relates to issues #43398 and #48751.
1 parent 9e8ecce commit 23a09b9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lldb/test/API/commands/expression/fixits/TestFixIts.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,8 @@ def test_with_target_error_applies_fixit(self):
106106
)
107107
self.assertIn("null_pointer->first", ret_val.GetError())
108108

109-
# The final function call runs into SIGILL on aarch64-linux.
110109
@expectedFailureAll(
111-
archs=["aarch64"], oslist=["freebsd", "linux"], bugnumber="llvm.org/pr49407"
110+
archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49407"
112111
)
113112
def test_with_multiple_retries(self):
114113
"""Test calling expressions with errors that can be fixed by the FixIts."""

lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
class StaticInitializers(TestBase):
88
@expectedFailureAll(
99
archs="aarch64",
10-
oslist=["freebsd", "linux"],
11-
bugnumber="https://bugs.llvm.org/show_bug.cgi?id=44053",
10+
oslist=["freebsd"],
11+
bugnumber="llvm.org/pr44053",
1212
)
1313
def test(self):
1414
"""Test a static initializer."""

0 commit comments

Comments
 (0)