]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/time_put/put/char/12439_3.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_put / put / char / 12439_3.cc
CommitLineData
8d9254fc 1// Copyright (C) 2003-2020 Free Software Foundation, Inc.
52a16d08
PC
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
748086b7 6// Free Software Foundation; either version 3, or (at your option)
52a16d08
PC
7// any later version.
8
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.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
52a16d08
PC
17
18// 22.2.5.3.1 time_put members
19
0c20e4ec
NS
20// { dg-require-time "" }
21
52a16d08
PC
22#include <locale>
23#include <sstream>
24#include <ctime>
25#include <testsuite_hooks.h>
26
27class TP : public std::time_put<char>
28{
29public:
30 mutable std::string format_chars;
31
32protected:
8b5bc374
CJ
33 iter_type do_put(iter_type s, std::ios_base&, char_type,
34 const std::tm*, char format, char) const
52a16d08
PC
35 {
36 format_chars.push_back(format);
37 return s;
38 }
39};
40
41// libstdc++/12439
42// time_put::put reads past end of format string
43void test03()
44{
45 using namespace std;
52a16d08
PC
46
47 ostringstream stream;
8fc81078 48 time_t tt = time(0);
52a16d08
PC
49
50 const char* fmt = "%c";
51
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() );
56}
57
58int main()
59{
60 test03();
61 return 0;
62}