Skip to content

Commit 4171f63

Browse files
committed
WIP: [libcxx] [test] Try to remove the OS specific checks
1 parent 8c4cd6c commit 4171f63

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

libcxx/test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.hex.pass.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1846,10 +1846,7 @@ void test1() {
18461846
void test2() {
18471847
std::locale lc = std::locale::classic();
18481848
std::locale lg(lc, new my_numpunct);
1849-
#if (defined(__APPLE__) || defined(TEST_HAS_GLIBC) || defined(__MINGW32__)) && defined(__x86_64__) && \
1850-
__LDBL_MANT_DIG__ == 64
1851-
// This test is failing on FreeBSD, possibly due to different representations
1852-
// of the floating point numbers.
1849+
#if defined(__x86_64__) && __LDBL_MANT_DIG__ == 64
18531850
// This test assumes that long doubles are x87 80 bit long doubles.
18541851
const my_facet f(1);
18551852
char str[200];

0 commit comments

Comments
 (0)