From a4e20d48574f823ff7cd3d7955504dcf5dae9316 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Sat, 3 Aug 2024 10:07:49 +0000 Subject: regress: fix test_high_prefork() we don't load the prefork dynamically, only the prefork at startup is honoured, so fix the test by stopping gmid so it is started with the right prefork. --- regress/tests.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/regress/tests.sh b/regress/tests.sh index 7648278..8eafabb 100644 --- a/regress/tests.sh +++ b/regress/tests.sh @@ -523,8 +523,13 @@ test_ipv6_server() { } test_high_prefork() { + kill "$(cat gmid.pid)" 2>/dev/null || true + setup_simple_test 'prefork 12' fetch / check_reply "20 text/gemini" "# hello world" || return 1 + + dont_check_server_alive=yes + kill "$(cat gmid.pid)" 2>/dev/null || true } -- cgit v1.2.3