mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Only test SEH handling with MSVC
MinGW doesn't support `__try` and friends at all, while Clang only supports it partially, and the test would require some changes to make it work there. Since this is only a test, we can afford to keep it MSVC-only. Closes #2447
This commit is contained in:
parent
0c13d021da
commit
ff9506cedd
@ -508,7 +508,8 @@ TEMPLATE_TEST_CASE_SIG("#1954 - 7 arg template test case sig compiles", "[regres
|
|||||||
TEST_CASE("Same test name but with different tags is fine", "[.approvals][some-tag]") {}
|
TEST_CASE("Same test name but with different tags is fine", "[.approvals][some-tag]") {}
|
||||||
TEST_CASE("Same test name but with different tags is fine", "[.approvals][other-tag]") {}
|
TEST_CASE("Same test name but with different tags is fine", "[.approvals][other-tag]") {}
|
||||||
|
|
||||||
#if defined(CATCH_PLATFORM_WINDOWS)
|
// MinGW doesn't support __try, and Clang has only very partial support
|
||||||
|
#if defined(_MSC_VER)
|
||||||
void throw_and_catch()
|
void throw_and_catch()
|
||||||
{
|
{
|
||||||
__try {
|
__try {
|
||||||
@ -549,4 +550,4 @@ TEST_CASE("Validate SEH behavior - no crash for stack unwinding", "[approvals][!
|
|||||||
throw 1;
|
throw 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // CATCH_PLATFORM_WINDOWS
|
#endif // _MSC_VER
|
||||||
|
Loading…
Reference in New Issue
Block a user