re PR libstdc++/24198 (Remove from the testsuite gnu_char_type (or fix it))
authorPaolo Carlini <pcarlini@suse.de>
Wed, 5 Oct 2005 19:11:18 +0000 (19:11 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 5 Oct 2005 19:11:18 +0000 (19:11 +0000)
2005-10-05  Paolo Carlini  <pcarlini@suse.de>

PR libstdc++/24198
* testsuite/27_io/basic_filebuf/3.cc: Use __gnu_test::pod_ushort
instead.
* testsuite/27_io/basic_filebuf/seekoff/10132-2.cc: Likewise.
* testsuite/27_io/basic_filebuf/seekpos/10132-3.cc: Likewise.
* testsuite/27_io/basic_fstream/3.cc: Likewise; run the test.
* testsuite/27_io/basic_ifstream/3.cc: Likewise; run the test.
* testsuite/27_io/basic_ios/3.cc: Likewise.
* testsuite/27_io/basic_iostream/3.cc: Likewise; run the test.
* testsuite/27_io/basic_istream/3.cc: Likewise; run the test.
* testsuite/27_io/basic_istringstream/3.cc: Likewise; run the test.
* testsuite/27_io/basic_ofstream/3.cc: Likewise; run the test.
* testsuite/27_io/basic_ostream/3.cc: Likewise; run the test.
* testsuite/27_io/basic_ostringstream/3.cc: Likewise; run the test.
* testsuite/27_io/basic_streambuf/3.cc: Likewise.
* testsuite/27_io/basic_stringbuf/3.cc: Likewise.
* testsuite/27_io/basic_stringstream/3.cc: Likewise; run the test.

From-SVN: r105010

16 files changed:
libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc
libstdc++-v3/testsuite/27_io/basic_filebuf/seekoff/10132-2.cc
libstdc++-v3/testsuite/27_io/basic_filebuf/seekpos/10132-3.cc
libstdc++-v3/testsuite/27_io/basic_fstream/3.cc
libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc
libstdc++-v3/testsuite/27_io/basic_ios/3.cc
libstdc++-v3/testsuite/27_io/basic_iostream/3.cc
libstdc++-v3/testsuite/27_io/basic_istream/3.cc
libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc
libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc
libstdc++-v3/testsuite/27_io/basic_ostream/3.cc
libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc
libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc
libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc
libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc

index 940f6ab45dce0a36c85287b58724a0a7efb30e91..81d4268594d2e2c391734f452a510b228f5a16d3 100644 (file)
@@ -1,3 +1,23 @@
+2005-10-05  Paolo Carlini  <pcarlini@suse.de>
+
+       PR libstdc++/24198
+       * testsuite/27_io/basic_filebuf/3.cc: Use __gnu_test::pod_ushort
+       instead.
+       * testsuite/27_io/basic_filebuf/seekoff/10132-2.cc: Likewise.
+       * testsuite/27_io/basic_filebuf/seekpos/10132-3.cc: Likewise.
+       * testsuite/27_io/basic_fstream/3.cc: Likewise; run the test.
+       * testsuite/27_io/basic_ifstream/3.cc: Likewise; run the test.
+       * testsuite/27_io/basic_ios/3.cc: Likewise.
+       * testsuite/27_io/basic_iostream/3.cc: Likewise; run the test.
+       * testsuite/27_io/basic_istream/3.cc: Likewise; run the test.
+       * testsuite/27_io/basic_istringstream/3.cc: Likewise; run the test.
+       * testsuite/27_io/basic_ofstream/3.cc: Likewise; run the test.
+       * testsuite/27_io/basic_ostream/3.cc: Likewise; run the test.
+       * testsuite/27_io/basic_ostringstream/3.cc: Likewise; run the test.
+       * testsuite/27_io/basic_streambuf/3.cc: Likewise.
+       * testsuite/27_io/basic_stringbuf/3.cc: Likewise.
+       * testsuite/27_io/basic_stringstream/3.cc: Likewise; run the test.
+
 2005-10-05  Paolo Carlini  <pcarlini@suse.de>
 
        PR libstdc++/11729 (DR 280, [Ready])
index f9f65da4a3a0fe287e1ee4689fb5324e7a3058cb..8ead347dc696ea9cd36d5804058f88c76ca02e41 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <fstream>
 #include <testsuite_hooks.h>
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef std::streamoff       off_type;
-  typedef long                 state_type;
-  typedef std::fpos<state_type>        pos_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_filebuf<gnu_char_type, gnu_char_traits> gnu_filebuf;
+  typedef std::basic_filebuf<__gnu_test::pod_ushort> gnu_filebuf;
   
   try
     { gnu_filebuf obj; }
index d9ec65bfc9ddd71aab041b7349e8e2ec774e639b..646276916c96fca1880544803f1bd619a69b7d50 100644 (file)
@@ -1,6 +1,6 @@
 // 2003-04-24 bkoz
 
-// Copyright (C) 2003 Free Software Foundation, Inc.
+// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
 //
 // 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
 
 #include <fstream>
 #include <testsuite_hooks.h>
+#include <testsuite_character.h>
 
 // libstdc++/10132, add on
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef std::streamoff       off_type;
-  typedef long                 state_type;
-  typedef std::fpos<state_type>        pos_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_filebuf<gnu_char_type, gnu_char_traits> gnu_filebuf;
+  typedef std::basic_filebuf<__gnu_test::pod_ushort> gnu_filebuf;
   
   try
     { 
index da613a13bfe04ce705f3eeb9473e443ce9558ab5..7123369212b5edf3fb387298bb26aa28b0559581 100644 (file)
@@ -1,6 +1,6 @@
 // 2003-04-24 bkoz
 
-// Copyright (C) 2003 Free Software Foundation, Inc.
+// Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
 //
 // 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
 
 #include <fstream>
 #include <testsuite_hooks.h>
+#include <testsuite_character.h>
 
 // libstdc++/10132, add on
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef std::streamoff       off_type;
-  typedef long                 state_type;
-  typedef std::fpos<state_type>        pos_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_filebuf<gnu_char_type, gnu_char_traits> gnu_filebuf;
+  typedef std::basic_filebuf<__gnu_test::pod_ushort> gnu_filebuf;
   
   try
     { 
index 2de3b8524cab5491dce8694bac45413ec0bf254e..4b01bd10ef4f1237420e8b2a35854f7cfb32bca8 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <fstream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef std::streamoff       off_type;
-  typedef long                 state_type;
-  typedef std::fpos<state_type>        pos_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_fstream<gnu_char_type, gnu_char_traits> gnu_fstr;
+  typedef std::basic_fstream<__gnu_test::pod_ushort> gnu_fstr;
 
   try
     { 
index b0a5a4d43a02e73a1b9bb0fd84131486ac993244..896e7028c23b569fb7e4e9ea6b756905218b9395 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <fstream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef std::streamoff       off_type;
-  typedef long                 state_type;
-  typedef std::fpos<state_type>        pos_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_ifstream<gnu_char_type, gnu_char_traits> gnu_ifstr;
+  typedef std::basic_ifstream<__gnu_test::pod_ushort> gnu_ifstr;
 
   try
     { 
index 255617ab4821502b7eea9812dbcc625be49254d3..6b3f7006f45fdc56a149a4cd49b85798ced92ca7 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <ios>
 #include <testsuite_hooks.h>
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef unsigned long        off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
-class gnu_ios: public std::basic_ios<gnu_char_type, gnu_char_traits>
+class gnu_ios: public std::basic_ios<__gnu_test::pod_ushort>
 { };
 
 void test07()
index 0aa53acc710860aabba6451b45af22f4e3bcd482..e0af3ebd3e67194e9d5af0c6e45bec0987b4b5dd 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <iostream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef unsigned long        off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_iostream<gnu_char_type, gnu_char_traits> gnu_iostr;
+  typedef std::basic_iostream<__gnu_test::pod_ushort> gnu_iostr;
 
   try
     { 
index 5b2dcab48343b607e841bb0b5542be43d34ba2cd..a2cadef507cfa89a6109305301dcae2a6c91ede0 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <istream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef unsigned long        off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_istream<gnu_char_type, gnu_char_traits> gnu_istr;
+  typedef std::basic_istream<__gnu_test::pod_ushort> gnu_istr;
 
   try
     { gnu_istr obj(NULL); }
index 96f3d6a5c1fbbf6905c889ef2391a63e1d3e67ce..9f5285a7df17ea2396f25db0edb39445e1290d06 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <sstream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef long         off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_istringstream<gnu_char_type, gnu_char_traits> gnu_isstr;
+  typedef std::basic_istringstream<__gnu_test::pod_ushort> gnu_isstr;
 
   try
     { 
index 3e177045a3fa920e54024c76cf59929f9af46018..8ef65088924ba8624e2efb3d613ddd1f8a5a95aa 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <fstream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef std::streamoff       off_type;
-  typedef long                 state_type;
-  typedef std::fpos<state_type>        pos_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_ofstream<gnu_char_type, gnu_char_traits> gnu_ofstr;
+  typedef std::basic_ofstream<__gnu_test::pod_ushort> gnu_ofstr;
 
   try
     { 
index 6b03e8c006e3ce147186d1b0b747e486b9c1439b..517176628f37ddb62bb59701c35004c28e8dc436 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <ostream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef unsigned long        off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_ostream<gnu_char_type, gnu_char_traits> gnu_ostr;
+  typedef std::basic_ostream<__gnu_test::pod_ushort> gnu_ostr;
 
   try
     { 
index 64d84060ed78a7d61ce60bb2cec383bc6694d42a..e68ea0eeacd0ff3b091ef15d5a9c5f03630e4ea5 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <sstream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef long         off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_ostringstream<gnu_char_type, gnu_char_traits> gnu_osstr;
+  typedef std::basic_ostringstream<__gnu_test::pod_ushort> gnu_osstr;
 
   try
     { 
index d9960e02d4e5d45dc696b89540d51528b6ed421f..765ca167d3898500622c10d9555da18315e3e14f 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <fstream>
 #include <testsuite_hooks.h>
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef unsigned long        off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
-class gnu_sbuf: public std::basic_streambuf<gnu_char_type, gnu_char_traits>
+class gnu_sbuf: public std::basic_streambuf<__gnu_test::pod_ushort>
 { };
 
 void test07()
index 03b410d65a8cef92683428b64953c52c8e0daffb..ced07b58fae7ec1f79d27b69b21ff91747299f35 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <sstream>
 #include <testsuite_hooks.h>
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef long         off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_stringbuf<gnu_char_type, gnu_char_traits> gnu_ssbuf;
+  typedef std::basic_stringbuf<__gnu_test::pod_ushort> gnu_ssbuf;
   
   try
     { gnu_ssbuf obj; }
index 56e7f7a7ba9f28cd6cdc7d2fee96176063a8c895..d47a67a084589088c60a773da4f9cb6115389276 100644 (file)
@@ -1,6 +1,6 @@
 // 1999-01-17 bkoz test functionality of basic_filebuf for char_type == char
 
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
+// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 // Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 
 #include <sstream>
 #include <testsuite_hooks.h>
-
-// { dg-do compile }
+#include <testsuite_character.h>
 
 // libstdc++/2020
 // should be able to use custom char_type, custom traits type
-class gnu_char_type
-{
-  unsigned long character;
-public:
-  // operator ==
-  bool
-  operator==(const gnu_char_type& __lhs) 
-  { return character == __lhs.character; }
-
-  // operator <
-  bool
-  operator<(const gnu_char_type& __lhs) 
-  { return character < __lhs.character; }
-
-  // default ctor
-  gnu_char_type() { }
-
-  // to_char_type
-  gnu_char_type(const unsigned long& __l) : character(__l) { } 
-
-  // to_int_type
-  operator unsigned long() const { return character; }
-};
-
-// char_traits specialization
-struct gnu_char_traits
-{
-  typedef gnu_char_type        char_type;
-  typedef long                 int_type;
-  typedef long                 pos_type;
-  typedef long         off_type;
-  typedef long                 state_type;
-  
-  static void 
-  assign(char_type& __c1, const char_type& __c2) { }
-  
-  static bool 
-  eq(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static bool 
-  lt(const char_type& __c1, const char_type& __c2) { return true; }
-  
-  static int 
-  compare(const char_type* __s1, const char_type* __s2, size_t __n)
-  { return 0; }
-  
-  static size_t
-  length(const char_type* __s) { return 0; }
-  
-  static const char_type* 
-  find(const char_type* __s, size_t __n, const char_type& __a)
-  { return __s; }
-  
-  static char_type* 
-  move(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  copy(char_type* __s1, const char_type* __s2, size_t __n)
-  { return __s1; }
-  
-  static char_type* 
-  assign(char_type* __s, size_t __n, char_type __a)
-  { return __s; }
-  
-  static char_type 
-  to_char_type(const int_type& __c)
-  { return char_type(); }
-  
-  static int_type 
-  to_int_type(const char_type& __c)
-  { return int_type(); }
-  
-  static bool 
-  eq_int_type(const int_type& __c1, const int_type& __c2)
-  { return true; }
-  
-  static int_type 
-  eof()
-  { return int_type(); }
-  
-  static int_type 
-  not_eof(const int_type& __c)
-  { return int_type(); }
-};
-
 void test07()
 {
   bool test __attribute__((unused)) = true;
-  typedef std::basic_stringstream<gnu_char_type, gnu_char_traits> gnu_sstr;
+  typedef std::basic_stringstream<__gnu_test::pod_ushort> gnu_sstr;
 
   try
     {