From 759f2e5d97a70c7295e5c2256018cfcb1f8900e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Sun, 19 Apr 2026 18:14:44 +0200 Subject: [PATCH] tests: avoid infinite recursion for `make check` The combination of a misspelled directory name and failing to check the result of cd leads to infinite recursion as `make check` simply invokes itself over and over. Follow-up to 00887aee8ca0efe0b40fa41b2a36e2d853d49b57 #18079 Closes #21378 --- tests/http/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/http/Makefile.am b/tests/http/Makefile.am index 3c24146e89..f4dc92f61b 100644 --- a/tests/http/Makefile.am +++ b/tests/http/Makefile.am @@ -81,4 +81,4 @@ clean-local: check: libtests libtests: - @(cd ../libtests; $(MAKE) check) + @(cd ../libtest && $(MAKE) check)