OSDN Git Service

2009-05-28 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / ext / throw_allocator / check_delete.cc
index a334931..cfc38ee 100644 (file)
 
 #include <cstdlib>
 #include <ext/throw_allocator.h>
-#include <testsuite_hooks.h>
-#include <testsuite_allocator.h>
-
-using __gnu_cxx::throw_allocator;
-
-void* 
-operator new(std::size_t n) throw(std::bad_alloc)
-{
-  new_called = true;
-  return std::malloc(n);
-}
-
-void
-operator delete(void *v) throw()
-{
-  delete_called = true;
-  return std::free(v);
-}
-
-// These just help tracking down error messages.
-void test01() 
-{ 
-  bool test __attribute__((unused)) = true;
-  typedef throw_allocator<unsigned int> allocator_type;
-  VERIFY( bool(__gnu_test::check_delete<allocator_type, true>()) ); 
-}
+#include <replacement_memory_operators.h>
 
 int main()
-{
-  test01();
+{ 
+  typedef __gnu_cxx::throw_allocator<unsigned int> allocator_type;
+  __gnu_test::check_delete<allocator_type, true>(); 
   return 0;
 }
-