From 935476447ec575a3ac64e9f7f844922326fcefe7 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Fri, 20 Jan 2023 17:19:01 +0100 Subject: [PATCH] 1024 is not enough with ASN + UBSAN, so go for 1536 --- pdns/recursordist/test-mtasker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.2