From 8a8e693c1953256098577402e75db60091e29c13 Mon Sep 17 00:00:00 2001
From: Peter Geoghegan <pg@bowt.ie>
Date: Sun, 19 Jul 2026 18:37:20 -0400
Subject: [PATCH 1/2] 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.
---
 src/test/modules/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/modules/Makefile b/src/test/modules/Makefile
index 0a74ab5c8..098bb8142 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)
-- 
2.53.0

