aboutsummaryrefslogtreecommitdiffstats
path: root/deps/sol2/tests/runtime_tests/source/abort_clean.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/sol2/tests/runtime_tests/source/abort_clean.cpp')
-rw-r--r--deps/sol2/tests/runtime_tests/source/abort_clean.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/deps/sol2/tests/runtime_tests/source/abort_clean.cpp b/deps/sol2/tests/runtime_tests/source/abort_clean.cpp
new file mode 100644
index 0000000..821333b
--- /dev/null
+++ b/deps/sol2/tests/runtime_tests/source/abort_clean.cpp
@@ -0,0 +1,11 @@
+#include <cstdlib>
+
+struct pre_main {
+ pre_main() {
+#ifdef SOL2_CI
+#ifdef _MSC_VER
+ _set_abort_behavior(0, _WRITE_ABORT_MSG);
+#endif
+#endif
+ }
+} pm;