Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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 .github/workflows/libcxx-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ jobs:
'generic-hardening-mode-extensive-observe-semantic',
'generic-hardening-mode-fast',
'generic-hardening-mode-fast-with-abi-breaks',
'generic-llvm-libc',
'generic-merged',
'generic-modules-cxx17-lsv',
'generic-no-exceptions',
Expand Down
14 changes: 13 additions & 1 deletion libcxx/utils/ci/run-buildbot
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,19 @@ generic-llvm-libc)
# Ensure we have the builtins archive built as we pass it in explicitly in
# the test config.
ninja -vC "${BUILD_DIR}" libclang_rt.builtins-x86_64.a
check-runtimes

# Manually run only libcxx/libcxxabi tests as we currently cannot build
# libunwind due to a missing dl_iterate_phdr implementation.
# TODO(boomanaiden154): Remove this once we can build libunwind and pass
# the tests.
step "Building libc++ test dependencies"
ninja -vC "${BUILD_DIR}" cxx-test-depends

step "Running the libc++ tests"
ninja -vC "${BUILD_DIR}" check-cxx

step "Running the libc++abi tests"
ninja -vC "${BUILD_DIR}" check-cxxabi
;;
#
# Module builds
Expand Down
Loading