testsuite_error.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // -*- C++ -*-
  2. // Error handling utils for the C++ library testsuite.
  3. //
  4. // Copyright (C) 2007-2022 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. #include <string>
  22. #include <testsuite_hooks.h>
  23. #ifndef _TESTSUITE_ERROR_H
  24. #define _TESTSUITE_ERROR_H 1
  25. namespace __gnu_test
  26. {
  27. struct test_category : public std::error_category
  28. {
  29. virtual const char*
  30. name() const noexcept
  31. {
  32. const char* s = "__gnu_test::test_category";
  33. return s;
  34. }
  35. virtual std::string
  36. message(int) const
  37. { return std::string("message to be determined"); }
  38. };
  39. struct test_derived_category : public test_category
  40. {
  41. virtual const char*
  42. name() const noexcept
  43. {
  44. const char* s = "__gnu_test::test_derived_category";
  45. return s;
  46. }
  47. };
  48. }
  49. #endif