Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / testsuite / ext / stdio_sync_filebuf / wchar_t / 1.cc
blob227a5a362d3bd4f5f0ea2be897b5b6a3d8bb9ff5
1 // 2003-05-01 Petur Runolfsson <peturr02@ru.is>
3 // Copyright (C) 2003 Free Software Foundation
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 2, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 #include <ext/stdio_sync_filebuf.h>
22 #include <testsuite_hooks.h>
24 void test01()
26 using namespace std;
27 typedef char_traits<wchar_t> traits_type;
29 bool test __attribute__((unused)) = true;
30 const char* c_lit = "black pearl jasmine tea";
31 const wchar_t* w_lit = L"black pearl jasmine tea";
32 int size = strlen(c_lit);
33 const char* name = "stdiobuf-1.txt";
35 FILE* fout = fopen(name, "w");
36 fwrite(c_lit, 1, size, fout);
37 fclose(fout);
39 FILE* fin = fopen(name, "r");
40 __gnu_cxx::stdio_sync_filebuf<wchar_t> wsbuf(fin);
42 VERIFY( traits_type::to_char_type(wsbuf.sgetc()) == w_lit[0] );
43 VERIFY( traits_type::to_char_type(getwc(fin)) == w_lit[0] );
44 VERIFY( traits_type::to_char_type(wsbuf.sgetc()) == w_lit[1] );
45 VERIFY( traits_type::to_char_type(wsbuf.sbumpc()) == w_lit[1] );
46 VERIFY( ungetwc(L'Z', fin) == L'Z' );
47 VERIFY( wsbuf.sbumpc() == L'Z' );
48 VERIFY( traits_type::to_char_type(getwc(fin)) == w_lit[2] );
49 VERIFY( wsbuf.sputbackc(L'X') == L'X' );
50 VERIFY( getwc(fin) == L'X' );
52 wchar_t buf[5];
53 wmemset(buf, 0xdeadbeef, 5);
54 VERIFY( wsbuf.sgetn(buf, 5) == 5 );
55 VERIFY( !wmemcmp(buf, w_lit + 3, 5) );
56 VERIFY( traits_type::to_char_type(getwc(fin)) == w_lit[8] );
58 fclose(fin);
61 int main ()
63 test01();
64 return 0;