From 4a8b14b2d7d75bc9078f2b6ca3606709804bf31d Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Fri, 18 Dec 2020 11:04:34 +0300 Subject: [PATCH] disable test on Windows --- example/terminate_handler.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/example/terminate_handler.cpp b/example/terminate_handler.cpp index 03ae4e9..6a6836f 100644 --- a/example/terminate_handler.cpp +++ b/example/terminate_handler.cpp @@ -328,8 +328,10 @@ int test_inplace() { int main(int argc, const char* argv[]) { if (argc < 2) { - copy_and_run(argv[0], '0', true); + // On Windows the debugger could be active. In that case tests hang and the CI run fails. #ifndef BOOST_WINDOWS + copy_and_run(argv[0], '0', true); + // We are copying files to make sure that stacktrace printing works independently from executable name copy_and_run(argv[0], '1', true); copy_and_run(argv[0], '2', false);