Skip to content

Commit d066756

Browse files
committed
[libc++] Fix some test failures in unusual configurations
1 parent eff9984 commit d066756

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24415,7 +24415,7 @@ void test12()
2441524415
output_iterator<char*> iter;
2441624416
std::locale lc = std::locale::classic();
2441724417
std::locale lg(lc, new my_numpunct);
24418-
#ifdef __APPLE__
24418+
#if defined(__APPLE__) && defined(__x86_64__)
2441924419
// This test is failing on FreeBSD, possibly due to different representations
2442024420
// of the floating point numbers.
2442124421
const my_facet f(1);

libcxxabi/test/incomplete_type.sh.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// addresses.
1515

1616
// UNSUPPORTED: no-exceptions
17+
// UNSUPPORTED: -fno-rtti
1718

1819
// NOTE: Link libc++abi explicitly and before libc++ so that libc++ doesn't drag
1920
// in the system libc++abi installation on OS X. (DYLD_LIBRARY_PATH is ignored

0 commit comments

Comments
 (0)