From: Michael Paquier Date: Wed, 10 Dec 2025 02:56:42 +0000 (+0900) Subject: Fix two issues with recently-introduced nbtree test X-Git-Url: http://git.postgresql.org/gitweb/static/%3Cscript%20data-cfasync=?a=commitdiff_plain;h=06817fc8a4b739cc2d1aa87071d9e20d483fd678;p=postgresql.git Fix two issues with recently-introduced nbtree test REGRESS has forgotten about the test nbtree_half_dead_pages, and a .gitignore was missing from the module. Oversights in c085aab27819 for REGRESS and 1e4e5783e7d7 for the missing .gitignore. Discussion: https://postgr.es/m/aTipJA1Y1zVSmH3H@paquier.xyz --- diff --git a/src/test/modules/nbtree/.gitignore b/src/test/modules/nbtree/.gitignore new file mode 100644 index 00000000000..5dcb3ff9723 --- /dev/null +++ b/src/test/modules/nbtree/.gitignore @@ -0,0 +1,4 @@ +# Generated subdirectories +/log/ +/results/ +/tmp_check/ diff --git a/src/test/modules/nbtree/Makefile b/src/test/modules/nbtree/Makefile index 970e2e629fe..eec264b16a4 100644 --- a/src/test/modules/nbtree/Makefile +++ b/src/test/modules/nbtree/Makefile @@ -2,7 +2,8 @@ EXTRA_INSTALL = src/test/modules/injection_points contrib/amcheck -REGRESS = nbtree_incomplete_splits +REGRESS = nbtree_half_dead_pages \ + nbtree_incomplete_splits ifdef USE_PGXS PG_CONFIG = pg_config