summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2003-05-12 21:01:39 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2003-05-12 21:01:39 +0000
commit9fb0ccbb361e1fc16a69a6d9b44b7bbf7991f097 (patch)
tree820a7a2c89aebe140a0bd8ca30a09ccdd4a8d69c /libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char
parentda33415cc3f8fdcbb5c747e66de01c1060ecfb79 (diff)
downloadgcc-9fb0ccbb361e1fc16a69a6d9b44b7bbf7991f097.tar.gz
2003-05-12 Paolo Carlini <pcarlini@unitus.it>
* testsuite/27_io/basic_filebuf/sgetc/char/1.cc: Remove unnecessary includes and unused string literals. * testsuite/27_io/basic_filebuf/sputbackc/char/1.cc: Likewise. * testsuite/27_io/basic_filebuf/sputc/char/1.cc: Likewise. * testsuite/27_io/basic_filebuf/sputn/char/1.cc: Likewise. * testsuite/27_io/basic_filebuf/sungetc/char/1.cc: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66735 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char')
-rw-r--r--libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char/1.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char/1.cc b/libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char/1.cc
index 875f37e8ae1..b02c70fb49a 100644
--- a/libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char/1.cc
+++ b/libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char/1.cc
@@ -21,12 +21,6 @@
// 27.8.1.4 Overridden virtual functions
#include <fstream>
-#include <unistd.h>
-#include <signal.h>
-#include <fcntl.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <locale>
#include <testsuite_hooks.h>
// @require@ %-*.tst %-*.txt
@@ -39,16 +33,9 @@
const int buffer_size = 8192;
//const int buffer_size = 40;
-const char carray_01[] = "santa cruz or sandiego?";
-const char carray_02[] = "memphis, new orleans, and savanah";
const char name_01[] = "filebuf_virtuals-1.txt"; // file with data in it
const char name_02[] = "filebuf_virtuals-2.txt"; // empty file, need to create
const char name_03[] = "filebuf_virtuals-3.txt"; // empty file, need to create
-const char name_04[] = "filebuf_virtuals-4.txt"; // empty file, need to create
-const char name_05[] = "filebuf_virtuals-5.txt"; // empty file, need to create
-const char name_06[] = "filebuf_virtuals-6.txt"; // empty file, need to create
-const char name_07[] = "filebuf_virtuals-7.txt"; // empty file, need to create
-const char name_08[] = "filebuf_virtuals-8.txt"; // empty file, need to create
class derived_filebuf: public std::filebuf
{