2001-12-17 18:08:57 +01:00
|
|
|
// Copyright (C) 2001 Free Software Foundation, Inc.
|
2000-06-24 02:53:06 +02:00
|
|
|
//
|
|
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
|
|
// software; you can redistribute it and/or modify it under the
|
|
|
|
// terms of the GNU General Public License as published by the
|
|
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
|
|
// any later version.
|
|
|
|
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this library; see the file COPYING. If not, write to the Free
|
|
|
|
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
|
|
// USA.
|
|
|
|
|
|
|
|
// 27.8.1.3 filebuf member functions
|
2001-01-25 05:09:22 +01:00
|
|
|
// @require@ %-*.tst %-*.txt
|
|
|
|
// @diff@ %-*.tst %-*.txt
|
2000-06-24 02:53:06 +02:00
|
|
|
|
|
|
|
// various tests for filebuf::open() and filebuf::close() including
|
|
|
|
// the non-portable functionality in the libstdc++-v3 IO library
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
2001-08-07 05:38:33 +02:00
|
|
|
#include <testsuite_hooks.h>
|
2000-06-24 02:53:06 +02:00
|
|
|
|
|
|
|
// verify that std::filebuf doesn't close files that it didn't open
|
|
|
|
// when using the following std::filebuf ctor:
|
|
|
|
//
|
2001-12-17 18:08:57 +01:00
|
|
|
// std::filebuf(__c_file_type* __f,
|
|
|
|
// ios_base::openmode __mode,
|
|
|
|
// int_type __s);
|
2000-06-24 02:53:06 +02:00
|
|
|
//
|
|
|
|
// thanks to "George T. Talbot" <george@moberg.com> for uncovering
|
|
|
|
// this bug/situation.
|
|
|
|
|
2001-01-25 05:09:22 +01:00
|
|
|
const char name_01[] = "filebuf_members-1.tst";
|
|
|
|
const char name_02[] = "filebuf_members-1.txt";
|
2000-06-24 02:53:06 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
test_01()
|
|
|
|
{
|
|
|
|
bool test = true;
|
|
|
|
int close_num;
|
|
|
|
|
|
|
|
// read (ext)
|
2001-03-27 05:48:17 +02:00
|
|
|
FILE* f2 = fopen(name_01, "r");
|
|
|
|
VERIFY( f2 != NULL );
|
2000-06-24 02:53:06 +02:00
|
|
|
{
|
2001-05-08 05:07:56 +02:00
|
|
|
std::filebuf fb(f2, std::ios_base::in, 512);
|
2000-06-24 02:53:06 +02:00
|
|
|
}
|
2001-03-27 05:48:17 +02:00
|
|
|
close_num = fclose(f2);
|
2000-08-14 21:59:26 +02:00
|
|
|
VERIFY( close_num == 0 );
|
2000-06-24 02:53:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
// read (standard)
|
2000-06-26 22:22:01 +02:00
|
|
|
FILE* f = fopen(name_01, "r");
|
2000-08-14 21:59:26 +02:00
|
|
|
VERIFY( f != NULL );
|
2000-06-24 02:53:06 +02:00
|
|
|
{
|
2000-06-26 22:22:01 +02:00
|
|
|
std::ifstream ifstream1(name_01);
|
2000-08-14 21:59:26 +02:00
|
|
|
VERIFY( ifstream1.is_open() );
|
2000-06-24 02:53:06 +02:00
|
|
|
std::ios_base::iostate st01 = ifstream1.rdstate();
|
2000-08-14 21:59:26 +02:00
|
|
|
VERIFY( st01 == std::ios_base::goodbit );
|
2000-06-24 02:53:06 +02:00
|
|
|
}
|
|
|
|
close_num = fclose(f);
|
2000-08-14 21:59:26 +02:00
|
|
|
VERIFY( close_num == 0 );
|
2000-06-24 02:53:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG_ASSERT
|
|
|
|
assert(test);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return test;
|
|
|
|
}
|
|
|
|
|
2001-12-17 18:08:57 +01:00
|
|
|
int
|
|
|
|
test_02()
|
|
|
|
{
|
|
|
|
int first_fd = ::open(name_01, O_RDONLY);
|
|
|
|
VERIFY( first_fd != -1 );
|
|
|
|
FILE* first_file = ::fdopen(first_fd, "r");
|
|
|
|
VERIFY( first_file != NULL );
|
|
|
|
std::filebuf fb (first_file, std::ios_base::in);
|
|
|
|
|
|
|
|
int second_fd = fb.fd();
|
|
|
|
|
|
|
|
bool test = first_fd == second_fd;
|
|
|
|
|
|
|
|
#ifdef DEBUG_ASSERT
|
|
|
|
assert(test);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return test;
|
|
|
|
}
|
2000-06-24 02:53:06 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
test_01();
|
2001-12-17 18:08:57 +01:00
|
|
|
test_02();
|
2000-06-24 02:53:06 +02:00
|
|
|
return 0;
|
|
|
|
}
|