]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/ext/enc_filebuf/char/13189.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / enc_filebuf / char / 13189.cc
index f4c3fe2995742246a8f3473753ed79de1ededa04..db6cf8c9cc811d623bbdce3ac5f3a4103acb7fe3 100644 (file)
@@ -1,9 +1,11 @@
-// Copyright (C) 2003 Free Software Foundation
+// { dg-require-iconv "ISO-8859-1" }
+
+// Copyright (C) 2003-2017 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.
-
-#ifdef _GLIBCXX_USE___ENC_TRAITS
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
 
-#include <ext/enc_filebuf.h>
 #include <testsuite_hooks.h>
+#include <ext/enc_filebuf.h>
 
 void test01()
 {
   using namespace std;
-  typedef __enc_traits state_type;
   typedef char 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
     {
@@ -45,14 +43,9 @@ void test01()
     }
   catch(...)
     {
-      VERIFY( false );
     }
 }
 
-#else
-void test01() { }
-#endif
-
 int main() 
 { 
   test01();