summaryrefslogtreecommitdiff
path: root/tests/main.cpp
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-07-15 09:29:32 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-07-15 09:29:32 +0000
commit2dec6dd505897498b8ea50043190961159f0b407 (patch)
tree67e1b443b22b4f32727f8fa928ae9f0d7bd32890 /tests/main.cpp
parentfc88f09ac1259a31f6da930ed9b885c0c83c38d1 (diff)
tests: Added Xbox360 and PS3 toolset support
git-svn-id: http://pugixml.googlecode.com/svn/trunk@602 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index b8d4e53..4330009 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -110,6 +110,15 @@ static bool run_test(test_runner* test)
#endif
}
+#if defined(__CELLOS_LV2__) && defined(PUGIXML_NO_EXCEPTIONS) && !defined(__SNC__)
+#include <stdlib.h>
+
+void std::exception::_Raise() const
+{
+ abort();
+}
+#endif
+
int main()
{
#ifdef __BORLANDC__