blob: 8378ebdb0f62f33168d16e89db519bfdd48ec80b [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.
//
//===----------------------------------------------------------------------===//
// <locale>
// class time_get<charT, InputIterator>
// iter_type
// get_date(iter_type s, iter_type end, ios_base& str,
// ios_base::iostate& err, tm* t) const;
#include <locale>
#include <cassert>
#include "iterators.h"
typedef input_iterator<const char*> I;
typedef std::time_get<char, I> F;
class my_facet
: public F
{
public:
explicit my_facet(std::size_t refs = 0)
: F(refs) {}
};
int main()
{
const my_facet f(1);
std::ios ios(0);
std::ios_base::iostate err;
std::tm t;
{
const char in[] = "5/5/5";
err = std::ios_base::goodbit;
t = std::tm();
I i = f.get_date(I(in), I(in+sizeof(in)-1), ios, err, &t);
assert(i.base() == in+sizeof(in)-1);
assert(t.tm_mon == 4);
assert(t.tm_mday == 5);
assert(t.tm_year == 105);
assert(err == std::ios_base::eofbit);
}
}