[libcxx-commits] [libcxx] [libc++][test] Replace uses of `_LIBCPP_ABI_MICROSOFT` in tests (PR #77233)
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jan 9 11:38:00 PST 2024
================
@@ -55,7 +55,7 @@ int main(int, char**) {
func(A(shared_buf, &cur_idx), std::unique_ptr<B>(new B(shared_buf, &cur_idx)),
C(shared_buf, &cur_idx));
-#if defined(_LIBCPP_ABI_MICROSOFT)
+#if defined(TEST_ABI_MICROSOFT)
----------------
mordante wrote:
This test fails for the Windows CI. Can you `#include "test_macros.h"`? The other test do that.
https://github.com/llvm/llvm-project/pull/77233
More information about the libcxx-commits
mailing list