]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/23_containers/multimap/requirements/citerators.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / multimap / requirements / citerators.cc
index 2daa88564cc303f2e30cc001903bb1dde9b1528b..85fe06650844aba763e9010595c9ba3881d16ae2 100644 (file)
@@ -2,7 +2,7 @@
 
 // 2007-10-15  Paolo Carlini  <pcarlini@suse.de>
 
-// Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+// Copyright (C) 2007-2014 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
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-
 #include <map>
-#include <testsuite_hooks.h>
-
-void
-test01()
-{
-  bool test __attribute__((unused)) = true;
-
-  typedef std::multimap<int, int> mm_type;
-  mm_type mm;
-  mm.insert(mm_type::value_type(1, 1));
-  VERIFY( mm.cbegin() == mm.begin() );
-  VERIFY( mm.cend() == mm.end() );
-  VERIFY( mm.crbegin() == mm.rbegin() );
-  VERIFY( mm.crend() == mm.rend() );
-  VERIFY( mm.cbegin() != mm.cend() );
-  VERIFY( mm.crbegin() != mm.crend() );  
-}
+#include <testsuite_containers.h>
 
 int main()
 {
-  test01();
+  typedef std::multimap<int, int> test_type;
+  __gnu_test::citerator<test_type> test;
   return 0;
 }