#include <streambuf>
#include <cassert>
#include "test_macros.h"
#include "platform_support.h"
template <class CharT>
struct test
: public std::basic_streambuf<CharT>
{
test()
{
assert(this->eback() == 0);
assert(this->gptr() == 0);
assert(this->egptr() == 0);
assert(this->pbase() == 0);
assert(this->pptr() == 0);
assert(this->epptr() == 0);
}
};
int main(int, char**)
{
{
test<char> t;
assert(t.getloc().name() == "C");
}
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
{
test<wchar_t> t;
assert(t.getloc().name() == "C");
}
#endif
std::locale::global(std::locale(LOCALE_en_US_UTF_8));
{
test<char> t;
assert(t.getloc().name() == LOCALE_en_US_UTF_8);
}
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
{
test<wchar_t> t;
assert(t.getloc().name() == LOCALE_en_US_UTF_8);
}
#endif
return 0;
}