From 471efa9a9a2640a4e9f4917170e08737d50f05e9 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Fri, 20 Jan 2023 16:25:00 +0100 Subject: [PATCH] Allow for some headroom, needed with TSAN --- 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 f1d709c14f..42540d220e 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 = 256; // Decrease to hit stackoverflow +static const size_t headroom = 512; // Decrease to hit stackoverflow static void doAlmostStackoverflow(void* arg) { -- 2.47.2