aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-11-07 09:15:06 -0500
committerJack Lloyd <[email protected]>2018-11-07 09:15:06 -0500
commit4e2f0e5d741e8b4471870e4e01817e152dd2be50 (patch)
tree5cd290b64859dfeaecda9c78c81ae9011c51ccb4 /src/tests
parentd7f0634af763484bca5ce1992d1c187a7e003e03 (diff)
Avoid throwing std:: exceptions
Also include <new> in mem_ops.cpp as apparently that header is where bad_alloc is defined.
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_tests.cpp b/src/tests/test_tests.cpp
index 3a52b85b9..eb5b1d42e 100644
--- a/src/tests/test_tests.cpp
+++ b/src/tests/test_tests.cpp
@@ -143,7 +143,7 @@ class Test_Tests final : public Test
{
Test::Result test_result(testcase_name);
test_result.test_throws("test_throws", "expected msg",
- []() { throw std::runtime_error("not the message"); });
+ []() { throw Botan::Exception("not the message"); });
verify_failure("test_throws", result, test_result);
}