summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl05/dl-o5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/dl05/dl-o5.cpp')
-rw-r--r--testsuites/libtests/dl05/dl-o5.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/testsuites/libtests/dl05/dl-o5.cpp b/testsuites/libtests/dl05/dl-o5.cpp
index 6e8476d5e2..5918e8f2d5 100644
--- a/testsuites/libtests/dl05/dl-o5.cpp
+++ b/testsuites/libtests/dl05/dl-o5.cpp
@@ -1,12 +1,20 @@
#include <cstdio>
#include <stdexcept>
#include "dl-load.h" /* make the symbol a C linkage */
-void exception_dl(void)
+void exception_dl(bool throw_runtime)
{
+ printf("exception_dl: begin\n");
try
{
- printf("exception_dl: throwing\n");
- throw std::runtime_error("exception_dl throw");
+ printf("exception_dl: throwing...\n");
+ if (throw_runtime)
+ throw std::runtime_error("throw std::runtime_error object");
+ else
+ throw dl_test_throw_me("throw dl_test_throw_me object");
+ }
+ catch (dl_test_throw_me const& e)
+ {
+ printf("%s: caught: %s\n", __func__, e.what());
}
catch (std::exception const& e)
{
@@ -16,4 +24,5 @@ void exception_dl(void)
{
printf("%s: caught: unknown\n", __func__);
}
+ printf("exception_dl: end\n");
}