Skip to content

[libcxx] [test] Change an MSVC mode XFAIL into UNSUPPORTED #141609

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
// MSVC/vcruntime falls back from the nothrow array new to the nothrow
// scalar new, instead of falling back on the throwing array new.
// https://developercommunity.visualstudio.com/t/vcruntime-nothrow-array-operator-new-fal/10373274
// XFAIL: target={{.+}}-windows-msvc
// This issue got fixed in MSVC 2022 17.14; with vcruntime from that version,
// this test does pass. (We could try to detect it and set a feature for when
// this is known broken, but that detection would essentially a copy of this
// test.)
// UNSUPPORTED: target={{.+}}-windows-msvc

#include <new>
#include <cstddef>
Expand Down
Loading