aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2024-05-29 10:25:19 +0000
committerDavid Spickett <david.spickett@linaro.org>2024-05-29 10:28:10 +0000
commit23a09b99313edb67d267a974be6cebfdfd97c7c8 (patch)
treeee64751f863e89b3e5802e55f8526288714dcee3
parent9e8ecce88ef65a2953db8071746720dd78bd1632 (diff)
downloadllvm-23a09b99313edb67d267a974be6cebfdfd97c7c8.zip
llvm-23a09b99313edb67d267a974be6cebfdfd97c7c8.tar.gz
llvm-23a09b99313edb67d267a974be6cebfdfd97c7c8.tar.bz2
[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.
-rw-r--r--lldb/test/API/commands/expression/fixits/TestFixIts.py3
-rw-r--r--lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py4
2 files changed, 3 insertions, 4 deletions
diff --git a/lldb/test/API/commands/expression/fixits/TestFixIts.py b/lldb/test/API/commands/expression/fixits/TestFixIts.py
index bc53b72..1b22ed1 100644
--- a/lldb/test/API/commands/expression/fixits/TestFixIts.py
+++ b/lldb/test/API/commands/expression/fixits/TestFixIts.py
@@ -106,9 +106,8 @@ class ExprCommandWithFixits(TestBase):
)
self.assertIn("null_pointer->first", ret_val.GetError())
- # The final function call runs into SIGILL on aarch64-linux.
@expectedFailureAll(
- archs=["aarch64"], oslist=["freebsd", "linux"], bugnumber="llvm.org/pr49407"
+ archs=["aarch64"], oslist=["freebsd"], bugnumber="llvm.org/pr49407"
)
def test_with_multiple_retries(self):
"""Test calling expressions with errors that can be fixed by the FixIts."""
diff --git a/lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py b/lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py
index 5fc37ac..ea3aa6a 100644
--- a/lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py
+++ b/lldb/test/API/commands/expression/static-initializers/TestStaticInitializers.py
@@ -7,8 +7,8 @@ from lldbsuite.test import lldbutil
class StaticInitializers(TestBase):
@expectedFailureAll(
archs="aarch64",
- oslist=["freebsd", "linux"],
- bugnumber="https://bugs.llvm.org/show_bug.cgi?id=44053",
+ oslist=["freebsd"],
+ bugnumber="llvm.org/pr44053",
)
def test(self):
"""Test a static initializer."""