]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/22_locale/moneypunct/3.cc
Reshuffle 22_locale testsuite.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / moneypunct / 3.cc
similarity index 62%
rename from libstdc++-v3/testsuite/22_locale/moneypunct.cc
rename to libstdc++-v3/testsuite/22_locale/moneypunct/3.cc
index 5d5e7b791da15b6a9b030e3a24d82748518b1a21..db6c93c45416b55127a6719841c06dfbb9740d66 100644 (file)
@@ -1,6 +1,6 @@
 // 2001-08-23  Benjamin Kosnik  <bkoz@redhat.com>
 
-// Copyright (C) 2001 Free Software Foundation
+// Copyright (C) 2001, 2003 Free Software Foundation
 //
 // 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 <locale>
 #include <testsuite_hooks.h>
 
-void test01()
-{
-  // Check for required base class.
-  typedef std::moneypunct<char, true> test_type;
-  typedef std::locale::facet base_type;
-  const test_type& obj = std::use_facet<test_type>(std::locale()); 
-  const base_type* base = &obj;
-  
-  // Check for required typedefs
-  typedef test_type::char_type char_type;
-  typedef test_type::string_type string_type;
-}
-
-void test02()
-{
-  // Check for required base class.
-  typedef std::moneypunct<char, false> test_type;
-  typedef std::locale::facet base_type;
-  const test_type& obj = std::use_facet<test_type>(std::locale()); 
-  const base_type* base = &obj;
-  
-  // Check for required typedefs
-  typedef test_type::char_type char_type;
-  typedef test_type::string_type string_type;
-}
-
 // Should be able to instantiate this for other types besides char, wchar_t
 class gnu_moneypunct_t: public std::moneypunct<unsigned char, true> 
 { };
@@ -68,8 +42,6 @@ void test03()
 
 int main()
 {
-  test01();
-  test02();
   test03();
   return 0;
 }