[libcxx-commits] [libcxx] 8f6a964 - [libc++] Fix tests broken on the Buildkite CI (#146733)
via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jul 4 02:03:22 PDT 2025
Author: Louis Dionne
Date: 2025-07-04T11:03:18+02:00
New Revision: 8f6a964c89c3d0a688860ae91bdeb7e617d22634
URL: https://github.com/llvm/llvm-project/commit/8f6a964c89c3d0a688860ae91bdeb7e617d22634
DIFF: https://github.com/llvm/llvm-project/commit/8f6a964c89c3d0a688860ae91bdeb7e617d22634.diff
LOG: [libc++] Fix tests broken on the Buildkite CI (#146733)
The Buildkite CI was unintentionally disabled for a few weeks. This
patch fixes the
CI jobs now that is has been re-enabled.
Added:
Modified:
libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp b/libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp
index f1c067cd322b7..9ac54a8738662 100644
--- a/libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp
+++ b/libcxx/test/std/thread/futures/futures.async/thread_create_failure.pass.cpp
@@ -16,9 +16,10 @@
// There is no way to limit the number of threads on windows
// UNSUPPORTED: windows
-// AIX and macOS seem to limit the number of processes, not threads via RLIMIT_NPROC
+// AIX, macOS and FreeBSD seem to limit the number of processes, not threads via RLIMIT_NPROC
// XFAIL: target={{.+}}-aix{{.*}}
// XFAIL: target={{.+}}-apple-{{.*}}
+// XFAIL: freebsd
// This test makes sure that we fail gracefully in care the thread creation fails. This is only reliably possible on
// systems that allow limiting the number of threads that can be created. See https://llvm.org/PR125428 for more details
More information about the libcxx-commits
mailing list