From 79964f73dff5a0553ea602674c16f279a9d1a911 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Sat, 3 Jul 2010 21:24:26 +0000 Subject: [PATCH] fixing runtime errors in this test, hopefully [SVN r63564] --- test/no_exceptions_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/no_exceptions_test.cpp b/test/no_exceptions_test.cpp index bbabcfc..2609be6 100644 --- a/test/no_exceptions_test.cpp +++ b/test/no_exceptions_test.cpp @@ -9,6 +9,7 @@ #include #include #include +#include struct my_exception: @@ -38,6 +39,7 @@ boost #ifndef BOOST_NO_RTTI BOOST_TEST(s.find("my_tag")!=std::string::npos); #endif + exit(0); } }