diff --git a/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp b/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp index 34af418cc..0e9909720 100644 --- a/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp +++ b/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/types.pass.cpp @@ -28,12 +28,10 @@ #include #include "platform_support.h" // locale name macros -#include "assert_checkpoint.h" int main() { { - CHECKPOINT("constructing en-US.UTF-8"); std::locale l(LOCALE_en_US_UTF_8); { assert(std::has_facet >(l)); @@ -47,21 +45,6 @@ int main() } } { - CHECKPOINT("constructing default locale"); - std::locale l(""); - { - assert(std::has_facet >(l)); - assert(&std::use_facet >(l) - == &std::use_facet >(l)); - } - { - assert(std::has_facet >(l)); - assert(&std::use_facet >(l) - == &std::use_facet >(l)); - } - } - { - CHECKPOINT("constructing C locale"); std::locale l("C"); { assert(std::has_facet >(l));