forked from mirror/libcxx
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.6 KiB
C++
73 lines
2.6 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// REQUIRES: locale.en_US.UTF-8
|
|
// REQUIRES: locale.ru_RU.UTF-8
|
|
// UNSUPPORTED: sanitizer-new-delete
|
|
|
|
// XFAIL: availability=macosx10.8
|
|
// XFAIL: availability=macosx10.7
|
|
|
|
// <locale>
|
|
|
|
// locale(const locale& other, const locale& one, category cats);
|
|
|
|
#include <locale>
|
|
#include <new>
|
|
#include <cassert>
|
|
|
|
#include "count_new.hpp"
|
|
#include "platform_support.h" // locale name macros
|
|
|
|
void check(const std::locale& loc)
|
|
{
|
|
assert(std::has_facet<std::collate<char> >(loc));
|
|
assert(std::has_facet<std::collate<wchar_t> >(loc));
|
|
|
|
assert(std::has_facet<std::ctype<char> >(loc));
|
|
assert(std::has_facet<std::ctype<wchar_t> >(loc));
|
|
assert((std::has_facet<std::codecvt<char, char, std::mbstate_t> >(loc)));
|
|
assert((std::has_facet<std::codecvt<char16_t, char, std::mbstate_t> >(loc)));
|
|
assert((std::has_facet<std::codecvt<char32_t, char, std::mbstate_t> >(loc)));
|
|
assert((std::has_facet<std::codecvt<wchar_t, char, std::mbstate_t> >(loc)));
|
|
|
|
assert((std::has_facet<std::moneypunct<char> >(loc)));
|
|
assert((std::has_facet<std::moneypunct<wchar_t> >(loc)));
|
|
assert((std::has_facet<std::money_get<char> >(loc)));
|
|
assert((std::has_facet<std::money_get<wchar_t> >(loc)));
|
|
assert((std::has_facet<std::money_put<char> >(loc)));
|
|
assert((std::has_facet<std::money_put<wchar_t> >(loc)));
|
|
|
|
assert((std::has_facet<std::numpunct<char> >(loc)));
|
|
assert((std::has_facet<std::numpunct<wchar_t> >(loc)));
|
|
assert((std::has_facet<std::num_get<char> >(loc)));
|
|
assert((std::has_facet<std::num_get<wchar_t> >(loc)));
|
|
assert((std::has_facet<std::num_put<char> >(loc)));
|
|
assert((std::has_facet<std::num_put<wchar_t> >(loc)));
|
|
|
|
assert((std::has_facet<std::time_get<char> >(loc)));
|
|
assert((std::has_facet<std::time_get<wchar_t> >(loc)));
|
|
assert((std::has_facet<std::time_put<char> >(loc)));
|
|
assert((std::has_facet<std::time_put<wchar_t> >(loc)));
|
|
|
|
assert((std::has_facet<std::messages<char> >(loc)));
|
|
assert((std::has_facet<std::messages<wchar_t> >(loc)));
|
|
}
|
|
|
|
int main()
|
|
{
|
|
{
|
|
std::locale loc(LOCALE_ru_RU_UTF_8);
|
|
check(loc);
|
|
std::locale loc2(loc, std::locale(LOCALE_en_US_UTF_8), std::locale::monetary);
|
|
check(loc2);
|
|
}
|
|
assert(globalMemCounter.checkOutstandingNewEq(0));
|
|
}
|