diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-12 07:37:37 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-12 07:37:37 +0200 |
commit | 0471063bf84827bac5f0aad341e2fb587c062b70 (patch) | |
tree | c868a1d43e8e25d869d49a0277e9a9693232117c | |
parent | 951bfec45e12df9860c666c52903cdb0118317fb (diff) | |
download | kit-0471063bf84827bac5f0aad341e2fb587c062b70.zip |
kit_test: signals
-rw-r--r-- | source/tests/test_signals.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/source/tests/test_signals.cpp b/source/tests/test_signals.cpp index 13c3ca6..cb8e61d 100644 --- a/source/tests/test_signals.cpp +++ b/source/tests/test_signals.cpp @@ -8,14 +8,7 @@ TEST("c++ std::exception") { throw std::exception(); } -TEST("c++ int exception") { - throw 42; -} - -TEST("c++ string exception") { - throw "foo bar"; -} - +// Can't handle multiple terminate signals on Windows #ifndef _WIN32 TEST("abort") { abort(); |