]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/open/char/3.cc
locale_facets.tcc: Tweak to avoid warnings.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / open / char / 3.cc
CommitLineData
23cac885 1// Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
53279c10
JQ
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 2, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING. If not, write to the Free
16// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17// USA.
18
23cac885
BK
19// 27.8.1.3 filebuf member functions
20// @require@ %-*.tst %-*.txt
21// @diff@ %-*.tst %-*.txt
53279c10 22
23cac885
BK
23// various tests for filebuf::open() and filebuf::close() including
24// the non-portable functionality in the libstdc++-v3 IO library
25
26#include <fstream>
27#include <testsuite_hooks.h>
53279c10 28
23cac885
BK
29// Charles Leggett <CGLeggett@lbl.gov>
30void test_05()
53279c10 31{
11f10e6b 32 bool test __attribute__((unused)) = true;
23cac885 33 const char* name = "tmp_file5";
53279c10 34
23cac885 35 std::fstream scratch_file;
53279c10 36
23cac885
BK
37 scratch_file.open(name, std::ios::out);
38 scratch_file.close();
53279c10 39
23cac885
BK
40 scratch_file.open(name, std::ios::in);
41 if (!scratch_file)
42 VERIFY( false );
43 scratch_file.close();
53279c10
JQ
44}
45
23cac885
BK
46int
47main()
53279c10 48{
23cac885 49 test_05();
53279c10
JQ
50 return 0;
51}
23cac885
BK
52
53