Merged r158704 through r158906 into branch.
[official-gcc.git] / libstdc++-v3 / testsuite / util / testsuite_error.h
blobc2bfed737dacb05afef401bc2da6d27edfeabf8d
1 // -*- C++ -*-
2 // Error handling utils for the C++ library testsuite.
3 //
4 // Copyright (C) 2007, 2008, 2009, 2010 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.
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.
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/>.
22 #include <string>
23 #include <testsuite_hooks.h>
25 #ifndef _TESTSUITE_ERROR_H
26 #define _TESTSUITE_ERROR_H 1
28 namespace __gnu_test
30 struct test_category : public std::error_category
32 test_category() {}
34 virtual const char*
35 name() const
37 const char* s = "__gnu_test::test_category";
38 return s;
41 virtual std::string
42 message(int) const
43 { return std::string("message to be determined"); }
46 struct test_derived_category : public test_category
48 test_derived_category() {}
50 virtual const char*
51 name() const
53 const char* s = "__gnu_test::test_derived_category";
54 return s;
59 #endif