[libcxx-commits] [libcxx] 1d76b94 - [libc++] Adjust XFAIL for quick_exit (#94274)
via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jun 4 11:21:31 PDT 2024
Author: Louis Dionne
Date: 2024-06-04T14:21:28-04:00
New Revision: 1d76b94abac033aebd5acaebf644ee173ed6cc71
URL: https://github.com/llvm/llvm-project/commit/1d76b94abac033aebd5acaebf644ee173ed6cc71
DIFF: https://github.com/llvm/llvm-project/commit/1d76b94abac033aebd5acaebf644ee173ed6cc71.diff
LOG: [libc++] Adjust XFAIL for quick_exit (#94274)
This avoids making the assumption that quick_exit will never be
implemented on macOS.
Added:
Modified:
libcxx/test/std/language.support/support.start.term/quick_exit.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/language.support/support.start.term/quick_exit.pass.cpp b/libcxx/test/std/language.support/support.start.term/quick_exit.pass.cpp
index 5a70ea5bd570b..d8eff69cb53fe 100644
--- a/libcxx/test/std/language.support/support.start.term/quick_exit.pass.cpp
+++ b/libcxx/test/std/language.support/support.start.term/quick_exit.pass.cpp
@@ -8,11 +8,12 @@
// UNSUPPORTED: c++03
-// ::quick_exit and ::at_quick_exit are not implemented on macOS.
+// ::quick_exit and ::at_quick_exit were not implemented in older versions of macOS
// TODO: We should never be using `darwin` as the triple, but LLVM's config.guess script
// guesses the host triple to be darwin instead of macosx when on macOS.
-// XFAIL: target={{.+}}-apple-macos{{.*}}
-// XFAIL: target={{.+}}-apple-darwin{{.+}}
+// XFAIL: target={{.+}}-apple-macosx10.{{13|14|15}}
+// XFAIL: target={{.+}}-apple-macosx{{11|12|13|14}}{{(.+)?}}
+// XFAIL: target={{.+}}-apple-darwin{{17|18|19|20|21|22|23}}{{(.+)?}}
// test quick_exit and at_quick_exit
More information about the libcxx-commits
mailing list