xfail dg-final "Sunk statements: 5" on hppa*64*-*-*
[official-gcc.git] / libstdc++-v3 / testsuite / 18_support / 50594.cc
blobce45789e16aa7a92cfc53cf4df3e2a3d2579f0f7
1 // { dg-options "-fwhole-program" }
2 // { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
3 // { dg-require-effective-target std_allocator_new }
4 // { dg-xfail-run-if "AIX operator new" { powerpc-ibm-aix* } }
6 // Copyright (C) 2011-2024 Free Software Foundation, Inc.
7 //
8 // This file is part of the GNU ISO C++ Library. This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 3, or (at your option)
12 // any later version.
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 // GNU General Public License for more details.
19 // You should have received a copy of the GNU General Public License along
20 // with this library; see the file COPYING3. If not see
21 // <http://www.gnu.org/licenses/>.
23 #include <new>
24 #include <string>
25 #include <cstdlib>
26 #include <testsuite_hooks.h>
28 bool user_new_called;
29 bool user_delete_called;
31 void* operator new(std::size_t n)
32 #if __cplusplus < 201103L
33 throw(std::bad_alloc)
34 #endif
36 user_new_called = true;
38 void* p = std::malloc(n);
40 if (!p)
41 throw std::bad_alloc();
43 return p;
46 void operator delete(void* p)
47 #if __cplusplus >= 201103L
48 noexcept
49 #else
50 throw()
51 #endif
53 user_delete_called = true;
55 std::free(p);
58 // libstdc++/50594
59 void test01()
62 std::string s = "Hello World, this is not a small string.";
65 VERIFY( user_new_called );
66 VERIFY( user_delete_called );
69 int main()
71 test01();
72 return 0;