diff --git a/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp b/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date.pass.cpp @@ -8,7 +8,6 @@ // // NetBSD does not support LC_TIME at the moment // XFAIL: netbsd -// XFAIL: LIBCXX-AIX-FIXME // REQUIRES: locale.en_US.UTF-8 // REQUIRES: locale.fr_FR.UTF-8 @@ -61,7 +60,7 @@ } { const my_facet f(LOCALE_fr_FR_UTF_8, 1); -#if defined(_WIN32) || defined(TEST_HAS_GLIBC) +#if defined(_WIN32) || defined(TEST_HAS_GLIBC) || defined(_AIX) const char in[] = "10/06/2009"; #else const char in[] = "10.06.2009"; diff --git a/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp b/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp --- a/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.time/locale.time.get.byname/get_date_wide.pass.cpp @@ -10,7 +10,6 @@ // XFAIL: netbsd // XFAIL: libcpp-has-no-wide-characters -// XFAIL: LIBCXX-AIX-FIXME // REQUIRES: locale.en_US.UTF-8 // REQUIRES: locale.fr_FR.UTF-8 @@ -63,7 +62,7 @@ } { const my_facet f(LOCALE_fr_FR_UTF_8, 1); -#if defined(_WIN32) || defined(TEST_HAS_GLIBC) +#if defined(_WIN32) || defined(TEST_HAS_GLIBC) || defined(_AIX) const wchar_t in[] = L"10/06/2009"; #else const wchar_t in[] = L"10.06.2009";