]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/ext/enc_filebuf/wchar_t/13189.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / enc_filebuf / wchar_t / 13189.cc
index 1e5a933add51709a0c9c11daa8ab8ab57c8b3269..464c464b14140a80ffb6e94151cde0e1956745b6 100644 (file)
@@ -1,9 +1,11 @@
-// Copyright (C) 2003, 2004 Free Software Foundation
+// { dg-require-iconv "ISO-8859-1" }
+
+// Copyright (C) 2003-2024 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
 // terms of the GNU General Public License as published by the
-// Free Software Foundation; either version 2, or (at your option)
+// Free Software Foundation; either version 3, or (at your option)
 // any later version.
 
 // This library is distributed in the hope that it will be useful,
 // 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.
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
 
-#ifdef _GLIBCXX_USE___ENC_TRAITS
-#include <ext/enc_filebuf.h>
-#endif
 #include <testsuite_hooks.h>
+#include <ext/enc_filebuf.h>
 
 void test01()
 {
-#ifdef _GLIBCXX_USE___ENC_TRAITS
   using namespace std;
-  typedef __enc_traits state_type;
   typedef wchar_t char_type;
   typedef __gnu_cxx::enc_filebuf<char_type> filebuf_type;
+  typedef filebuf_type::state_type state_type;
   typedef codecvt<char_type, char, state_type> enc_codecvt;
 
-  bool test __attribute__((unused)) = true;
   ios_base::openmode mode = ios_base::in | ios_base::out | ios_base::trunc;
   try
     {
@@ -46,9 +43,7 @@ void test01()
     }
   catch(...)
     {
-      VERIFY( false );
     }
-#endif
 }
 
 int main()