]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/19_diagnostics/runtime_error/what-3.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 19_diagnostics / runtime_error / what-3.cc
CommitLineData
0349df29
BK
1// 2001-02-26 Benjamin Kosnik <bkoz@redhat.com>
2
8d9254fc 3// Copyright (C) 2001-2020 Free Software Foundation, Inc.
0349df29
BK
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
0349df29
BK
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
0349df29
BK
19
20// 19.1 Exception classes
21
22#include <string>
23#include <stdexcept>
538075fe 24#include <cstring>
fe413112 25#include <testsuite_hooks.h>
0349df29 26
5e984b90 27// test copy ctors, assignment operators, and persistence of member string data
9dd3d53c
BK
28// libstdc++/1972
29// via Greg Bumgardner <bumgard@roguewave.com>
30void allocate_on_stack(void)
31{
32 const size_t num = 512;
33 __extension__ char array[num];
34 for (size_t i = 0; i < num; i++)
35 array[i]=0;
567d4027
PC
36 // Suppress unused warnings.
37 for (size_t i = 0; i < num; i++)
38 array[i]=array[i];
9dd3d53c 39}
5e984b90 40
9dd3d53c
BK
41void test04()
42{
43 const std::string s("CA ISO emergency once again:immediate power down");
44 const char* strlit1 = "wish I lived in Palo Alto";
45 const char* strlit2 = "...or Santa Barbara";
46 std::runtime_error obj1(s);
47
48 // block 01
49 {
50 const std::string s2(strlit1);
51 std::runtime_error obj2(s2);
52 obj1 = obj2;
53 }
54 allocate_on_stack();
eeff8d2c 55 VERIFY( std::strcmp(strlit1, obj1.what()) == 0 );
9dd3d53c
BK
56
57 // block 02
58 {
59 const std::string s3(strlit2);
60 std::runtime_error obj3 = std::runtime_error(s3);
61 obj1 = obj3;
62 }
63 allocate_on_stack();
eeff8d2c 64 VERIFY( std::strcmp(strlit2, obj1.what()) == 0 );
9dd3d53c 65}
0349df29
BK
66
67int main(void)
68{
9dd3d53c 69 test04();
0349df29
BK
70 return 0;
71}