[libcxx-commits] [libcxx] 9dfbccf - [libcxx] [test] Extend the UNSUPPORTED lines in strong_order_long_double.verify.cpp for non-x86_64 Windows
Martin Storsjö via libcxx-commits
libcxx-commits at lists.llvm.org
Thu May 5 13:21:49 PDT 2022
Author: Martin Storsjö
Date: 2022-05-05T23:21:19+03:00
New Revision: 9dfbccf052baa2b5f5658052a1ee3c96ff644b99
URL: https://github.com/llvm/llvm-project/commit/9dfbccf052baa2b5f5658052a1ee3c96ff644b99
DIFF: https://github.com/llvm/llvm-project/commit/9dfbccf052baa2b5f5658052a1ee3c96ff644b99.diff
LOG: [libcxx] [test] Extend the UNSUPPORTED lines in strong_order_long_double.verify.cpp for non-x86_64 Windows
Differential Revision: https://reviews.llvm.org/D124992
Added:
Modified:
libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp b/libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
index c10409d43a098..25019711a71eb 100644
--- a/libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
+++ b/libcxx/test/std/language.support/cmp/cmp.alg/strong_order_long_double.verify.cpp
@@ -11,7 +11,12 @@
// The following platforms have sizeof(long double) == sizeof(double), so this test doesn't apply to them.
// This test does apply to aarch64 where Arm's AAPCS64 is followed. There they are
diff erent sizes.
// UNSUPPORTED: target={{arm64|armv(7|8)(l|m)?|powerpc|powerpc64}}-{{.+}}
-// UNSUPPORTED: target=x86_64-pc-windows-{{.+}}
+// MSVC configurations have long double equal to regular double on all
+// architectures.
+// UNSUPPORTED: target={{.+}}-pc-windows-msvc
+// ARM/AArch64 MinGW also has got long double equal to regular double, just
+// like MSVC (thus match both MinGW and MSVC here, for those architectures).
+// UNSUPPORTED: target={{aarch64|armv7}}-{{.*}}-windows-{{.+}}
// <compare>
More information about the libcxx-commits
mailing list