]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/std/diagnostics/std.exceptions/runtime.error/runtime_error.pass.cpp
Vendor import of libc++ trunk r351319 (just before the release_80
[FreeBSD/FreeBSD.git] / test / std / diagnostics / std.exceptions / runtime.error / runtime_error.pass.cpp
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 // test runtime_error
11
12 #include <stdexcept>
13 #include <type_traits>
14 #include <cstring>
15 #include <string>
16 #include <cassert>
17
18 int main()
19 {
20     static_assert((std::is_base_of<std::exception, std::runtime_error>::value),
21                  "std::is_base_of<std::exception, std::runtime_error>::value");
22     static_assert(std::is_polymorphic<std::runtime_error>::value,
23                  "std::is_polymorphic<std::runtime_error>::value");
24     {
25     const char* msg = "runtime_error message";
26     std::runtime_error e(msg);
27     assert(std::strcmp(e.what(), msg) == 0);
28     std::runtime_error e2(e);
29     assert(std::strcmp(e2.what(), msg) == 0);
30     e2 = e;
31     assert(std::strcmp(e2.what(), msg) == 0);
32     }
33     {
34     std::string msg("another runtime_error message");
35     std::runtime_error e(msg);
36     assert(e.what() == msg);
37     std::runtime_error e2(e);
38     assert(e2.what() == msg);
39     e2 = e;
40     assert(e2.what() == msg);
41     }
42 }