From e3c3e3f3e965d80ac76cff6f506971f596efa1b6 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 20 Jun 2023 12:30:32 +0930 Subject: [PATCH] configurator: increase stack size in HAVE_POINTER_SAFE_MAKECONTEXT test This was *hanging* on GitHub's CI (Ubuntu 22.04) with clang. The increase seems to have fixed it. Signed-off-by: Rusty Russell --- tools/configurator/configurator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configurator/configurator.c b/tools/configurator/configurator.c index 722a6f69..7d8f6b09 100644 --- a/tools/configurator/configurator.c +++ b/tools/configurator/configurator.c @@ -471,7 +471,7 @@ static const struct test base_tests[] = { "#include \n" "#include \n" "static int worked = 0;\n" - "static char stack[1024];\n" + "static char stack[8192];\n" "static ucontext_t a, b;\n" "static void fn(void *p, void *q) {\n" " void *cp = &worked;\n" -- 2.39.5