/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/test/modules/nbtree/Makefile
32 строки
933 B
Peter Geoghegan
Add test coverage for nbtree backwards scans.
26 июл 2026, 00:13
26 июл 2026, 00:13
e395fbd
Код
Авторство
О чём код?
# src/test/modules/nbtree/Makefile EXTRA_INSTALL = src/test/modules/injection_points contrib/amcheck REGRESS = nbtree_half_dead_pages \ nbtree_incomplete_splits ISOLATION = backwards-scan-concurrent-splits \ predicate-empty-index ifdef USE_PGXS PG_CONFIG = pg_config PGXS := $(shell $(PG_CONFIG) --pgxs) include $(PGXS) else subdir = src/test/modules/nbtree top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global # XXX: This test is conditional on enable_injection_points in the # parent Makefile, so we should never get here in the first place if # injection points are not enabled. But the buildfarm 'misc-check' # step doesn't pay attention to the if-condition in the parent # Makefile. To work around that, disable running the test here too. ifeq ($(enable_injection_points),yes) include $(top_srcdir)/contrib/contrib-global.mk else check: @echo "injection points are disabled in this build" endif endif