Skip to content

Commit 62f6d63

Browse files
authored
[libc++] Add clang-21 to failing tests on Windows (#124955)
After we switched to LLVM version 21, some libc++ tests started failing on Windows. This patch adds the clang-21 condition to XFAIL to fix the issue.
1 parent fdd4e9f commit 62f6d63

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libcxx/test/libcxx/fuzzing/random.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// This test fails because Clang no longer enables -fdelayed-template-parsing
1010
// by default on Windows with C++20 (#69431).
11-
// XFAIL: msvc && (clang-18 || clang-19 || clang-20)
11+
// XFAIL: msvc && (clang-18 || clang-19 || clang-20 || clang-21)
1212

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

libcxx/test/std/depr/depr.c.headers/math_h.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// This test fails because Clang no longer enables -fdelayed-template-parsing
1010
// by default on Windows with C++20 (#69431).
11-
// XFAIL: msvc && (clang-18 || clang-19 || clang-20)
11+
// XFAIL: msvc && (clang-18 || clang-19 || clang-20 || clang-21)
1212

1313
// <math.h>
1414

libcxx/test/std/numerics/c.math/cmath.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// This test fails because Clang no longer enables -fdelayed-template-parsing
1010
// by default on Windows with C++20 (#69431).
11-
// XFAIL: msvc && (clang-18 || clang-19 || clang-20)
11+
// XFAIL: msvc && (clang-18 || clang-19 || clang-20 || clang-21)
1212

1313
// <cmath>
1414

0 commit comments

Comments
 (0)