]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/18_support/50594.cc
testsuite_hooks.h: Rewrite VERIFY in terms of __builtin_printf and __builtin_abort.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 18_support / 50594.cc
CommitLineData
578f0234 1// { dg-options "-fwhole-program" }
c0f6f2b4 2// { dg-additional-options "-static-libstdc++" { target *-*-mingw* } }
578f0234 3
818ab71a 4// Copyright (C) 2011-2016 Free Software Foundation, Inc.
578f0234
PC
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
9// Free Software Foundation; either version 3, or (at your option)
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
20
21#include <new>
22#include <string>
23#include <cstdlib>
24#include <testsuite_hooks.h>
25
26bool user_new_called;
27bool user_delete_called;
28
29void* operator new(std::size_t n)
734f5023 30#if __cplusplus < 201103L
578f0234
PC
31 throw(std::bad_alloc)
32#endif
33{
34 user_new_called = true;
35
36 void* p = std::malloc(n);
37
38 if (!p)
39 throw std::bad_alloc();
40
41 return p;
42}
43
44void operator delete(void* p)
734f5023 45#if __cplusplus >= 201103L
578f0234
PC
46 noexcept
47#else
48 throw()
49#endif
50{
51 user_delete_called = true;
52
53 std::free(p);
54}
55
56// libstdc++/50594
57void test01()
58{
578f0234 59 {
34a2b755 60 std::string s = "Hello World, this is not a small string.";
578f0234
PC
61 }
62
63 VERIFY( user_new_called );
64 VERIFY( user_delete_called );
65}
66
67int main()
68{
69 test01();
70 return 0;
71}