From: Peter Geoghegan Date: Mon, 20 Jul 2026 02:15:37 +0000 (-0400) Subject: Run nbtree test module tests under autoconf builds X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b087a88c40e45453682bf6d24c42eff33f401662;p=thirdparty%2Fpostgresql.git Run nbtree test module tests under autoconf builds Commit 1e4e5783e added the src/test/modules/nbtree test module, but only registered it in the meson build, not in the module list in src/test/modules/Makefile. As a result, autoconf builds never ran the module's tests. To fix, add the module to the Makefile's lists of injection-point-dependent modules. Oversight in commit 1e4e5783e. Author: Peter Geoghegan Reviewed-by: Michael Paquiër Discussion: https://postgr.es/m/CAH2-Wz=JchiD5ksiT35p8Ar02gaNv8_y6w2wBAST+Zzen-eNjw@mail.gmail.com Backpatch-through: 19 --- diff --git a/src/test/modules/Makefile b/src/test/modules/Makefile index 0a74ab5c86f..098bb8142ae 100644 --- a/src/test/modules/Makefile +++ b/src/test/modules/Makefile @@ -59,9 +59,9 @@ SUBDIRS = \ ifeq ($(enable_injection_points),yes) -SUBDIRS += injection_points gin typcache +SUBDIRS += injection_points gin nbtree typcache else -ALWAYS_SUBDIRS += injection_points gin typcache +ALWAYS_SUBDIRS += injection_points gin nbtree typcache endif ifeq ($(with_ssl),openssl)