From 9dfbccf052baa2b5f5658052a1ee3c96ff644b99 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Wed, 4 May 2022 22:05:50 +0300 Subject: [PATCH] [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 --- .../cmp/cmp.alg/strong_order_long_double.verify.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 c10409d..2501971 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 different 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-{{.+}} // -- 2.7.4