1// 2005-07-11  Paolo Carlini  <pcarlini@suse.de>
2
3// Copyright (C) 2005-2015 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library.  This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
17// with this library; see the file COPYING3.  If not see
18// <http://www.gnu.org/licenses/>.
19
20// 27.6.2.5.2  Arithmetic inserters
21
22#include <sstream>
23#include <testsuite_hooks.h>
24
25void test01()
26{
27  using namespace std;
28  bool test __attribute__((unused)) = true;
29
30  wstringstream ostr1, ostr2, ostr3, ostr4;
31
32  ostr1.setf(ios_base::oct);
33  ostr1.setf(ios_base::hex);
34
35  short s = -1;
36  ostr1 << s;
37  VERIFY( ostr1.str() == L"-1" );
38
39  ostr2.setf(ios_base::oct);
40  ostr2.setf(ios_base::hex);
41
42  int i = -1;
43  ostr2 << i;
44  VERIFY( ostr2.str() == L"-1" );
45
46  ostr3.setf(ios_base::oct);
47  ostr3.setf(ios_base::hex);
48
49  long l = -1;
50  ostr3 << l;
51  VERIFY( ostr3.str() == L"-1" );
52
53#ifdef _GLIBCXX_USE_LONG_LONG
54  ostr4.setf(ios_base::oct);
55  ostr4.setf(ios_base::hex);
56
57  long long ll = -1LL;
58  ostr4 << ll;
59  VERIFY( ostr4.str() == L"-1" );
60#endif
61}
62
63int main()
64{
65  test01();
66  return 0;
67}
68