]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/19_diagnostics/runtime_error/what-1.cc
Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 19_diagnostics / runtime_error / what-1.cc
CommitLineData
8339896e
BK
1// 2001-02-26 Benjamin Kosnik <bkoz@redhat.com>
2
748086b7 3// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009
538075fe 4// Free Software Foundation, Inc.
8339896e
BK
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
748086b7 9// Free Software Foundation; either version 3, or (at your option)
8339896e
BK
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
748086b7
JJ
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
8339896e
BK
20
21// 19.1 Exception classes
22
23#include <string>
24#include <stdexcept>
538075fe 25#include <cstring>
8339896e
BK
26#include <testsuite_hooks.h>
27
28// libstdc++/1972
29void test01()
30{
31 bool test __attribute__((unused)) = true;
32 std::string s("lack of sunlight, no water error");
33
34 // 1
35 std::runtime_error obj1 = std::runtime_error(s);
36
37 // 2
38 std::runtime_error obj2(s);
39
40 VERIFY( std::strcmp(obj1.what(), s.data()) == 0 );
41 VERIFY( std::strcmp(obj2.what(), s.data()) == 0 );
42}
43
44void test02()
45{
46 bool test __attribute__((unused)) = true;
47 std::string s("lack of sunlight error");
48 std::range_error x(s);
49
50 VERIFY( std::strcmp(x.what(), s.data()) == 0 );
51}
52
53int main(void)
54{
55 test01();
56 test02();
57 return 0;
58}