[libcxx-commits] [PATCH] D111297: [libcxx] [test] Make windows triples in XFAILs less specific
Martin Storsjö via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Oct 7 04:17:06 PDT 2021
mstorsjo created this revision.
mstorsjo added a reviewer: ldionne.
mstorsjo requested review of this revision.
Herald added a project: libc++.
Herald added a reviewer: libc++.
This allows picking up on mingw triples that often use 'w64' instead
of 'pc' as the vendor part.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D111297
Files:
libcxx/test/std/depr/depr.c.headers/stdlib_h.aligned_alloc.compile.pass.cpp
libcxx/test/std/language.support/support.runtime/cstdlib.aligned_alloc.compile.pass.cpp
Index: libcxx/test/std/language.support/support.runtime/cstdlib.aligned_alloc.compile.pass.cpp
===================================================================
--- libcxx/test/std/language.support/support.runtime/cstdlib.aligned_alloc.compile.pass.cpp
+++ libcxx/test/std/language.support/support.runtime/cstdlib.aligned_alloc.compile.pass.cpp
@@ -16,7 +16,7 @@
// XFAIL: use_system_cxx_lib && target={{.+}}-apple-macosx10.{{9|10|11|12|13|14}}
// ::aligned_alloc is not implemented on Windows
-// XFAIL: target={{.+}}-pc-windows-{{.+}}
+// XFAIL: target={{.+}}-windows-{{.+}}
#include <cstdlib>
#include <type_traits>
Index: libcxx/test/std/depr/depr.c.headers/stdlib_h.aligned_alloc.compile.pass.cpp
===================================================================
--- libcxx/test/std/depr/depr.c.headers/stdlib_h.aligned_alloc.compile.pass.cpp
+++ libcxx/test/std/depr/depr.c.headers/stdlib_h.aligned_alloc.compile.pass.cpp
@@ -16,7 +16,7 @@
// XFAIL: use_system_cxx_lib && target={{.+}}-apple-macosx10.{{9|10|11|12|13|14}}
// ::aligned_alloc is not implemented on Windows
-// XFAIL: target={{.+}}-pc-windows-{{.+}}
+// XFAIL: target={{.+}}-windows-{{.+}}
#include <stdlib.h>
#include <type_traits>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111297.377797.patch
Type: text/x-patch
Size: 1223 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20211007/c6423ea4/attachment-0001.bin>
More information about the libcxx-commits
mailing list