2014-10-15 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / libstdc++-v3 / testsuite / experimental / string_view / inserters / char / 2.cc
blob8da798ae3bf3588c30e58539b9a5a82731b67cc6
2 // Copyright (C) 2013-2014 Free Software Foundation, Inc.
3 //
4 // This file is part of the GNU ISO C++ Library. This library is free
5 // software; you can redistribute it and/or modify it under the
6 // terms of the GNU General Public License as published by the
7 // Free Software Foundation; either version 3, or (at your option)
8 // any later version.
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this library; see the file COPYING3. If not see
17 // <http://www.gnu.org/licenses/>.
19 // inserters
21 // NB: This file is predicated on sstreams, ostreams
22 // working, not to mention other major details like char_traits, and
23 // all of the string_view class.
25 // { dg-options "-std=gnu++14" }
26 // { dg-require-fileio "" }
28 #include <experimental/string_view>
29 #include <string>
30 #include <fstream>
31 #include <iostream>
32 #include <testsuite_hooks.h>
34 // testing basic_filebuf::xsputn via stress testing with large string_views
35 // based on a bug report libstdc++ 9
36 // mode == out
37 void
38 test05(std::size_t size)
40 bool test [[gnu::unused]] = true;
42 const char filename[] = "inserters_extractors-2.txt";
43 const char fillc = 'f';
44 std::ofstream ofs(filename);
45 std::string str(size, fillc);
46 std::experimental::string_view strv{str};
48 // sanity checks
49 VERIFY( str.size() == size );
50 VERIFY( ofs.good() );
52 // stress test
53 ofs << str << std::endl;
54 if (!ofs.good())
55 test = false;
57 ofs << str << std::endl;
58 if (!ofs.good())
59 test = false;
61 VERIFY( str.size() == size );
62 VERIFY( ofs.good() );
64 ofs.close();
66 // sanity check on the written file
67 std::ifstream ifs(filename);
68 std::size_t count = 0;
69 char c;
70 while (count <= (2 * size) + 4)
72 ifs >> c;
73 if (ifs.good() && c == fillc)
75 ++count;
76 c = '0';
78 else
79 break;
82 VERIFY( count == 2 * size );
85 int
86 main()
88 test05(1);
89 test05(1000);
90 test05(10000);
92 return 0;