From 9ab6f4f4b7221181bc5f155a42ae54cbd1ec29af Mon Sep 17 00:00:00 2001 From: firewave Date: Sun, 5 Jan 2025 18:39:52 +0100 Subject: [PATCH] disabled `TestLeakAutoVarRecursiveCountLimit` on Cygwin as well suddenly started to fail with error 2816 in the CI --- test/testleakautovar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testleakautovar.cpp b/test/testleakautovar.cpp index 4509b4d1551..c97fb349774 100644 --- a/test/testleakautovar.cpp +++ b/test/testleakautovar.cpp @@ -3223,8 +3223,8 @@ class TestLeakAutoVarRecursiveCountLimit : public TestFixture { } }; -#if !defined(__MINGW32__) -// TODO: this crashes with a stack overflow for MinGW in the CI +#if !defined(__MINGW32__) && !defined(__CYGWIN__) +// TODO: this crashes with a stack overflow for MinGW and error 2816 for Cygwinin the CI REGISTER_TEST(TestLeakAutoVarRecursiveCountLimit) #endif