Merge from mainline
[official-gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_put / put / char / 12439_3.cc
blob4408565350e5d6f998a7808826a92d6e8519fc80
1 // Copyright (C) 2003 Free Software Foundation
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 2, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING. If not, write to the Free
16 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 // USA.
19 // 22.2.5.3.1 time_put members
21 #include <locale>
22 #include <sstream>
23 #include <ctime>
24 #include <testsuite_hooks.h>
26 class TP : public std::time_put<char>
28 public:
29 mutable std::string format_chars;
31 protected:
32 iter_type do_put(iter_type s, std::ios_base&, char_type,
33 const std::tm*, char format, char) const
35 format_chars.push_back(format);
36 return s;
40 // libstdc++/12439
41 // time_put::put reads past end of format string
42 void test03()
44 using namespace std;
45 bool test __attribute__((unused)) = true;
47 ostringstream stream;
48 time_t tt = time(NULL);
50 const char* fmt = "%c";
52 TP tp;
53 tp.put(TP::iter_type(stream), stream, stream.fill(), localtime(&tt),
54 fmt, fmt + 1);
55 VERIFY( tp.format_chars.empty() );
58 int main()
60 test03();
61 return 0;