2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_put / put / wchar_t / 12439_2.cc
blob6715cc538466051a03460fc8438f8ccc2c455082
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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 // USA.
19 // 22.2.5.3.1 time_put members
21 #include <locale>
22 #include <sstream>
23 #include <ctime>
24 #include <cstring>
25 #include <testsuite_hooks.h>
27 // libstdc++/12439
28 // time_put::put writes narrowed characters to output iterator
29 void test02()
31 using namespace std;
32 bool test __attribute__((unused)) = true;
34 typedef time_put<wchar_t> tp_type;
36 const wchar_t fmt[] = {
37 0xa0, 0x103, 0xfc, 0xb3, 0xa0c3,
38 L'%', L'c'
41 const size_t len = sizeof(fmt) / sizeof(fmt[0]);
42 const size_t cmplen = wcschr(fmt, L'%') - fmt;
44 locale loc;
45 const tp_type& tp = use_facet<tp_type>(loc);
46 time_t tt = time(NULL);
47 wostringstream stream;
49 tp.put(tp_type::iter_type(stream), stream, stream.fill(),
50 localtime(&tt), fmt, fmt + len);
51 wstring str = stream.str();
52 VERIFY( str.length() >= cmplen );
53 VERIFY( !wmemcmp(str.data(), fmt, cmplen) );
56 int main()
58 test02();
59 return 0;