OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [19_diagnostics/] [logic_error/] [what-1.cc] - Blame information for rev 742

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 742 jeremybenn
// 2001-02-26 Benjamin Kosnik  <bkoz@redhat.com>
2
 
3
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009
4
// Free Software Foundation, Inc.
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
// 19.1 Exception classes
22
 
23
#include <string>
24
#include <stdexcept>
25
#include <cstring>
26
#include <testsuite_hooks.h>
27
 
28
// libstdc++/1972
29
void test01()
30
{
31
  bool test __attribute__((unused)) = true;
32
  std::string s("lack of sunlight, no water error");
33
 
34
  // 1
35
  std::logic_error obj1 = std::logic_error(s);
36
 
37
  // 2
38
  std::logic_error obj2(s);
39
 
40
  VERIFY( std::strcmp(obj1.what(), s.data()) == 0 );
41
  VERIFY( std::strcmp(obj2.what(), s.data()) == 0 );
42
}
43
 
44
void test02()
45
{
46
  bool test __attribute__((unused)) = true;
47
  std::string s("lack of sunlight error");
48
  std::domain_error x(s);
49
 
50
  VERIFY( std::strcmp(x.what(), s.data()) == 0 );
51
}
52
 
53
int main(void)
54
{
55
  test01();
56
  test02();
57
  return 0;
58
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.