c3f0f556db
2007-02-01 Paolo Carlini <pcarlini@suse.de> PR libstdc++/14493 * libsupc++/typeinfo (bad_cast::what, bad_typeid::what): Declare. * libsupc++/tinfo.cc: Define. * libsupc++/exception (bad_exception::what): Declare. * libsupc++/eh_exception.cc: Define. (exception::what): Adjust, don't use typeid. * libsupc++/new (bad_alloc::what): Declare. * libsupc++/new_handler.cc: Define. * config/abi/pre/gnu.ver: Export the new methods @3.4.9; adjust existing 3.4.10 exports to 3.4.9. * configure.ac: Adjust to 6.0.9. * configure: Regenerate. * testsuite/util/testsuite_abi.cc: Update. * testsuite/18_support/14493.cc: New. From-SVN: r121461
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
// 2007-01-30 Paolo Carlini <pcarlini@suse.de>
|
|
|
|
// Copyright (C) 2007 Free Software Foundation, Inc.
|
|
//
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
// software; you can redistribute it and/or modify it under the
|
|
// terms of the GNU General Public License as published by the
|
|
// Free Software Foundation; either version 2, or (at your option)
|
|
// any later version.
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this library; see the file COPYING. If not, write to the Free
|
|
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
// USA.
|
|
|
|
#include <new>
|
|
#include <typeinfo>
|
|
#include <exception>
|
|
#include <cstring>
|
|
#include <testsuite_hooks.h>
|
|
|
|
// libstdc++/14493
|
|
void test01()
|
|
{
|
|
bool test __attribute__((unused)) = true;
|
|
using namespace std;
|
|
|
|
bad_alloc ba;
|
|
VERIFY( !strcmp(ba.what(), "std::bad_alloc") );
|
|
|
|
bad_cast bc;
|
|
VERIFY( !strcmp(bc.what(), "std::bad_cast") );
|
|
|
|
bad_typeid bt;
|
|
VERIFY( !strcmp(bt.what(), "std::bad_typeid") );
|
|
|
|
exception e;
|
|
VERIFY( !strcmp(e.what(), "std::exception") );
|
|
|
|
bad_exception be;
|
|
VERIFY( !strcmp(be.what(), "std::bad_exception") );
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test01();
|
|
return 0;
|
|
}
|