]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Run nbtree test module tests under autoconf builds
authorPeter Geoghegan <pg@bowt.ie>
Mon, 20 Jul 2026 02:15:37 +0000 (22:15 -0400)
committerPeter Geoghegan <pg@bowt.ie>
Mon, 20 Jul 2026 02:15:37 +0000 (22:15 -0400)
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 <pg@bowt.ie>
Reviewed-by: Michael Paquiër <michael@paquier.xyz>
Discussion: https://postgr.es/m/CAH2-Wz=JchiD5ksiT35p8Ar02gaNv8_y6w2wBAST+Zzen-eNjw@mail.gmail.com
Backpatch-through: 19

src/test/modules/Makefile

index 0a74ab5c86f51a46bbaa93ff848096a78ad0122e..098bb8142ae7695db967d820ab1cad62795bae88 100644 (file)
@@ -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)