re PR fortran/68746 (FAIL: gfortran.dg/read_dir.f90 -O0 execution test)
[official-gcc.git] / libstdc++-v3 / testsuite / backward / 11460.cc
blob01d33b209511de1afa0b8bcb06d21149c1fc2142
1 // { dg-options "-Wno-deprecated" }
2 // Copyright (C) 2003-2016 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 #include <strstream>
20 #include <testsuite_hooks.h>
22 class Buf : public std::strstreambuf
24 public:
25 Buf(const char* p, std::streamsize n)
26 : std::strstreambuf(p, n)
27 { }
29 int_type pub_pbackfail(int_type c = traits_type::eof())
31 return pbackfail(c);
35 // libstdc++/11460
36 void test01()
38 bool test __attribute__((unused)) = true;
40 typedef std::strstreambuf::traits_type Traits;
41 const char str[] = "a\xff";
43 Buf buf(str, 2);
45 Traits::int_type a = Traits::to_int_type('a');
46 VERIFY( buf.sbumpc() == a );
47 VERIFY( buf.sungetc() == a );
48 VERIFY( buf.sbumpc() == a );
49 VERIFY( buf.sputbackc('a') == a );
50 VERIFY( buf.sbumpc() == a );
51 VERIFY( buf.pub_pbackfail() != Traits::eof() );
52 VERIFY( buf.sbumpc() == a );
53 VERIFY( buf.pub_pbackfail(a) == a );
54 buf.sbumpc();
56 Traits::int_type xff = Traits::to_int_type('\xff');
57 VERIFY( buf.sbumpc() == xff );
58 VERIFY( buf.sungetc() == xff );
59 VERIFY( buf.sbumpc() == xff );
60 VERIFY( buf.sputbackc('\xff') == xff );
61 VERIFY( buf.sbumpc() == xff );
62 VERIFY( buf.pub_pbackfail() != Traits::eof() );
63 VERIFY( buf.sbumpc() == xff );
64 VERIFY( buf.pub_pbackfail(xff) == xff );
67 int main()
69 test01();
70 return 0;