]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_ostream/tellp/char/1.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_ostream / tellp / char / 1.cc
CommitLineData
23cac885 1// 2000-06-29 bkoz
b2dad0e3 2
aa118a03 3// Copyright (C) 2000-2014 Free Software Foundation, Inc.
b2dad0e3
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
b2dad0e3
BK
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
23cac885
BK
19
20// 27.6.2.4 basic_ostream seek members
b2dad0e3 21
0c20e4ec
NS
22// { dg-require-fileio "" }
23
b2dad0e3 24#include <ostream>
23cac885
BK
25#include <sstream>
26#include <fstream>
fe413112 27#include <testsuite_hooks.h>
b2dad0e3 28
b2dad0e3
BK
29void test01()
30{
31 using namespace std;
9c9e97bd 32 typedef ios::off_type off_type;
23cac885
BK
33 typedef ios::pos_type pos_type;
34
11f10e6b 35 bool test __attribute__((unused)) = true;
23cac885 36 const char str_lit01[] = "ostream_seeks-1.txt";
b2dad0e3 37
23cac885 38 // out
23cac885
BK
39 ostringstream ost1;
40 pos_type p1 = ost1.tellp();
41
42 ofstream ofs1;
43 pos_type p2 = ofs1.tellp();
44
9c9e97bd
PC
45 // N.B. We implement the resolution of DR 453 and
46 // ostringstream::tellp() doesn't fail.
47 VERIFY( p1 == pos_type(off_type(0)) );
48 VERIFY( p2 == pos_type(off_type(-1)) );
23cac885
BK
49
50 // out
51 // test ctors leave things in the same positions...
52 ostringstream ost2("bob_marley:kaya");
53 p1 = ost2.tellp();
54
55 ofstream ofs2(str_lit01);
56 p2 = ofs2.tellp();
57
58 VERIFY( p1 == p2 );
59}
b2dad0e3
BK
60
61int main()
62{
63 test01();
04d930e6 64 return 0;
b2dad0e3 65}