]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/manipulators/standard/char/quoted.cc
12790-1.cc: Remove 'test' variables.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / manipulators / standard / char / quoted.cc
1 // { dg-do run { target c++14 } }
2
3 // Copyright (C) 2013-2016 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.7.6 - Quoted manipulators [quoted.manip]
21
22 #include <string>
23 #include <sstream>
24 #include <iomanip>
25 #include <testsuite_hooks.h>
26
27 void
28 test01()
29 {
30 // Basic test from paper.
31 std::stringstream ss;
32 std::string original = "foolish me";
33 std::string round_trip;
34 ss << std::quoted(original);
35 ss >> std::quoted(round_trip);
36 VERIFY( original == round_trip );
37 }
38
39 void
40 test02()
41 {
42 // Test skipws correctness.
43 std::stringstream ss;
44 ss << std::quoted("Hello Goodbye") << ' ' << 1 << ' ' << 2;
45 std::string song;
46 int thing1, thing2;
47 ss >> std::quoted(song) >> thing1 >> thing2;
48 VERIFY( song == "Hello Goodbye" );
49 VERIFY( thing1 == 1 );
50 VERIFY( thing2 == 2 );
51 }
52
53 void
54 test03()
55 {
56 // Test read of unquoted string.
57 std::stringstream ss;
58 ss << "Alpha Omega";
59 std::string testit;
60 ss >> std::quoted(testit);
61 VERIFY( testit == "Alpha" );
62 }
63
64 auto
65 test04(const std::string& message)
66 {
67 // Test 'const basic_string&'
68 std::stringstream ss;
69 ss << "** Error: " << std::quoted(message) << " **";
70 return ss.str();
71 }
72
73 int
74 main()
75 {
76 test01();
77 test02();
78 test03();
79 auto ss = test04("My biscuits are burnin'!");
80 VERIFY( ss == "** Error: \"My biscuits are burnin'!\" **" );
81
82 return 0;
83 }