Skip to content

[lldb] XFAIL tests that are failing on CI #7958

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lldb/test/API/lang/c/tls_globals/TestTlsGlobals.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def setUp(self):
bugnumber="llvm.org/pr28392",
oslist=no_match(lldbplatformutil.getDarwinOSTriples()),
)
@expectedFailureDarwin("rdar://120676969")
def test(self):
"""Test thread-local storage."""
self.build()
Expand Down
1 change: 1 addition & 0 deletions lldb/test/API/lang/cpp/thread_local/TestThreadLocal.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

class PlatformProcessCrashInfoTestCase(TestBase):
@expectedFailureAll(oslist=["windows", "linux", "freebsd", "netbsd"])
@expectedFailureDarwin("rdar://120676969")
def test_thread_local(self):
# Set a breakpoint on the first instruction of the main function,
# before the TLS initialization has run.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def setUp(self):

@skipUnlessDarwin
@add_test_categories(["pyapi"])
@expectedFailureDarwin("rdar://120796553")
def test_with_python_api(self):
"""Test stepping and setting breakpoints in indirect and re-exported symbols."""
self.build()
Expand Down
2 changes: 2 additions & 0 deletions lldb/test/Shell/Unwind/eh-frame-dwarf-unwind.test
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

# UNSUPPORTED: system-windows
# REQUIRES: target-x86_64, native
# XFAIL: system-darwin
# See: rdar://120797300

# RUN: %clang_host %p/Inputs/call-asm.c %p/Inputs/eh-frame-dwarf-unwind.s -o %t
# RUN: %lldb %t -s %s -o exit | FileCheck %s
Expand Down
2 changes: 2 additions & 0 deletions lldb/test/Shell/Unwind/thread-step-out-ret-addr-check.test
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

# REQUIRES: target-x86_64
# UNSUPPORTED: system-windows
# XFAIL: system-darwin
# See: rdar://120797300

# RUN: %clang_host %p/Inputs/call-asm.c -x assembler-with-cpp %p/Inputs/thread-step-out-ret-addr-check.s -o %t
# RUN: not %lldb %t -s %s -b 2>&1 | FileCheck %s
Expand Down