blob: 271ae2c0319d6d4375dc04e38009bfb9772ae39c [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
// <locale>
// template <class charT> class ctype_byname;
// charT toupper(charT) const;
#include <locale>
#include <cassert>
#include "platform_support.h" // locale name macros
int main()
{
{
std::locale l;
{
typedef std::ctype_byname<char> F;
std::locale ll(l, new F(LOCALE_en_US_UTF_8));
const F& f = std::use_facet<F>(ll);
assert(f.toupper(' ') == ' ');
assert(f.toupper('A') == 'A');
assert(f.toupper('\x07') == '\x07');
assert(f.toupper('.') == '.');
assert(f.toupper('a') == 'A');
assert(f.toupper('1') == '1');
assert(f.toupper('\xDA') == '\xDA');
assert(f.toupper('c') == 'C');
}
}
{
std::locale l;
{
typedef std::ctype_byname<char> F;
std::locale ll(l, new F("C"));
const F& f = std::use_facet<F>(ll);
assert(f.toupper(' ') == ' ');
assert(f.toupper('A') == 'A');
assert(f.toupper('\x07') == '\x07');
assert(f.toupper('.') == '.');
assert(f.toupper('a') == 'A');
assert(f.toupper('1') == '1');
assert(f.toupper('\xDA') == '\xDA');
assert(f.toupper('\xFA') == '\xFA');
}
}
{
std::locale l;
{
typedef std::ctype_byname<wchar_t> F;
std::locale ll(l, new F(LOCALE_en_US_UTF_8));
const F& f = std::use_facet<F>(ll);
assert(f.toupper(L' ') == L' ');
assert(f.toupper(L'A') == L'A');
assert(f.toupper(L'\x07') == L'\x07');
assert(f.toupper(L'.') == L'.');
assert(f.toupper(L'a') == L'A');
assert(f.toupper(L'1') == L'1');
assert(f.toupper(L'\xDA') == L'\xDA');
assert(f.toupper(L'\xFA') == L'\xDA');
}
}
{
std::locale l;
{
typedef std::ctype_byname<wchar_t> F;
std::locale ll(l, new F("C"));
const F& f = std::use_facet<F>(ll);
assert(f.toupper(L' ') == L' ');
assert(f.toupper(L'A') == L'A');
assert(f.toupper(L'\x07') == L'\x07');
assert(f.toupper(L'.') == L'.');
assert(f.toupper(L'a') == L'A');
assert(f.toupper(L'1') == L'1');
assert(f.toupper(L'\xDA') == L'\xDA');
assert(f.toupper(L'\xFA') == L'\xFA');
}
}
}