[libcxx-commits] [libcxx] 9e60495 - [libc++][Android] strong_order_long_double.verify.cpp: disable on i686
Ryan Prichard via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Nov 2 14:56:16 PDT 2022
Author: Ryan Prichard
Date: 2022-11-02T14:55:56-07:00
New Revision: 9e6049527f9b5975a456d44afcdc4cec79a2bec6
URL: https://github.com/llvm/llvm-project/commit/9e6049527f9b5975a456d44afcdc4cec79a2bec6
DIFF: https://github.com/llvm/llvm-project/commit/9e6049527f9b5975a456d44afcdc4cec79a2bec6.diff
LOG: [libc++][Android] strong_order_long_double.verify.cpp: disable on i686
This target (as well as 32-bit ARM Android) have sizeof(long double)
equal to sizeof(double).
Reviewed By: ldionne, #libc
Differential Revision: https://reviews.llvm.org/D137135
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 25019711a71eb..1a9289c7c966c 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
@@ -17,6 +17,8 @@
// 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-{{.+}}
+// Android's 32-bit x86 target has long double equal to regular double.
+// UNSUPPORTED: target=i686-{{.+}}-android{{.*}}
// <compare>
More information about the libcxx-commits
mailing list