Disable problematic test on Windows

This commit is contained in:
Martin Hořeňovský 2020-09-06 18:00:28 +02:00
parent 9155a9ff20
commit 2d4f8ac8e6
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 13 additions and 6 deletions

View File

@ -105,12 +105,19 @@ set_tests_properties(
FAIL_REGULAR_EXPRESSION "abort;terminate;fatal" FAIL_REGULAR_EXPRESSION "abort;terminate;fatal"
) )
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-2 COMMAND DisabledExceptions-DefaultHandler "Tests that abort")
set_tests_properties( # The default handler on Windows leads to the just-in-time debugger firing,
CATCH_CONFIG_DISABLE_EXCEPTIONS-2 # which makes this test unsuitable for CI and headless runs, as it opens
PROPERTIES # up an interactive dialog.
PASS_REGULAR_EXPRESSION "Catch will terminate" if (NOT WIN32)
) add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-2 COMMAND DisabledExceptions-DefaultHandler "Tests that abort")
set_tests_properties(
CATCH_CONFIG_DISABLE_EXCEPTIONS-2
PROPERTIES
PASS_REGULAR_EXPRESSION "Catch will terminate"
)
endif(NOT WIN32)
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-3 COMMAND DisabledExceptions-CustomHandler "Tests that run") add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-3 COMMAND DisabledExceptions-CustomHandler "Tests that run")
set_tests_properties( set_tests_properties(