mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-13 18:07:05 +08:00
This time, instead of using a core isolation test, put it on its own test module; this way it can require the pageinspect module to be present before running. The module's Makefile is loosely modeled after test_decoding's, so that it's easy to add further tests for either pg_regress or isolationtester later. Backpatch to 9.5.
23 lines
390 B
Makefile
23 lines
390 B
Makefile
# src/test/modules/Makefile
|
|
|
|
subdir = src/test/modules
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = \
|
|
brin \
|
|
commit_ts \
|
|
dummy_seclabel \
|
|
test_ddl_deparse \
|
|
test_parser \
|
|
test_rls_hooks \
|
|
test_shm_mq \
|
|
worker_spi
|
|
|
|
all: submake-errcodes
|
|
|
|
submake-errcodes:
|
|
$(MAKE) -C $(top_builddir)/src/backend submake-errcodes
|
|
|
|
$(recurse)
|