Skip to content
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
7 changes: 4 additions & 3 deletions libcxx/test/libcxx/fuzzing/random.pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
//
//===----------------------------------------------------------------------===//

// This test fails because Clang no longer enables -fdelayed-template-parsing
// by default on Windows with C++20 (#69431).
// XFAIL: msvc && (clang-18 || clang-19 || clang-20 || clang-21)
// This doesn't work on Windows because in the MSVC UCRT headers the math.h is
// actually intended to implement the full C++ spec requirements. For details
// see https://github.com/llvm/llvm-project/issues/70225#issuecomment-1992528828
// XFAIL: msvc

// UNSUPPORTED: c++03, c++11

Expand Down
7 changes: 4 additions & 3 deletions libcxx/test/std/depr/depr.c.headers/math_h.pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
//
//===----------------------------------------------------------------------===//

// This test fails because Clang no longer enables -fdelayed-template-parsing
// by default on Windows with C++20 (#69431).
// XFAIL: msvc && (clang-18 || clang-19 || clang-20 || clang-21)
// This doesn't work on Windows because in the MSVC UCRT headers the math.h is
// actually intended to implement the full C++ spec requirements. For details
// see https://github.com/llvm/llvm-project/issues/70225#issuecomment-1992528828
// XFAIL: msvc

// <math.h>

Expand Down
7 changes: 4 additions & 3 deletions libcxx/test/std/numerics/c.math/cmath.pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
//
//===----------------------------------------------------------------------===//

// This test fails because Clang no longer enables -fdelayed-template-parsing
// by default on Windows with C++20 (#69431).
// XFAIL: msvc && (clang-18 || clang-19 || clang-20 || clang-21)
// This doesn't work on Windows because in the MSVC UCRT headers the math.h is
// actually intended to implement the full C++ spec requirements. For details
// see https://github.com/llvm/llvm-project/issues/70225#issuecomment-1992528828
// XFAIL: msvc

// <cmath>

Expand Down
Loading