From: Otto Moerbeek Date: Fri, 20 Jan 2023 16:19:01 +0000 (+0100) Subject: 1024 is not enough with ASN + UBSAN, so go for 1536 X-Git-Tag: dnsdist-1.8.0-rc1~100^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F12446%2Fhead;p=thirdparty%2Fpdns.git 1024 is not enough with ASN + UBSAN, so go for 1536 --- diff --git a/pdns/recursordist/test-mtasker.cc b/pdns/recursordist/test-mtasker.cc index 42540d220e..246924298c 100644 --- a/pdns/recursordist/test-mtasker.cc +++ b/pdns/recursordist/test-mtasker.cc @@ -42,7 +42,7 @@ BOOST_AUTO_TEST_CASE(test_Simple) } static const size_t stackSize = 8 * 1024; -static const size_t headroom = 512; // Decrease to hit stackoverflow +static const size_t headroom = 1536; // Decrease to hit stackoverflow static void doAlmostStackoverflow(void* arg) {