mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
70 lines
2.2 KiB
Makefile
70 lines
2.2 KiB
Makefile
|
# contrib/test_decoding/Makefile
|
||
|
|
||
|
MODULES = test_decoding
|
||
|
OBJS = test_decoding.o
|
||
|
|
||
|
# Note: because we don't tell the Makefile there are any regression tests,
|
||
|
# we have to clean those result files explicitly
|
||
|
EXTRA_CLEAN = -r $(pg_regress_clean_files)
|
||
|
|
||
|
ifdef USE_PGXS
|
||
|
PG_CONFIG = pg_config
|
||
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
||
|
include $(PGXS)
|
||
|
else
|
||
|
subdir = contrib/test_decoding
|
||
|
top_builddir = ../..
|
||
|
include $(top_builddir)/src/Makefile.global
|
||
|
include $(top_srcdir)/contrib/contrib-global.mk
|
||
|
endif
|
||
|
|
||
|
# Disabled because these tests require "wal_level=logical", which
|
||
|
# typical installcheck users do not have (e.g. buildfarm clients).
|
||
|
installcheck:;
|
||
|
|
||
|
# But it can nonetheless be very helpful to run tests on preexisting
|
||
|
# installation, allow to do so, but only if requested explicitly.
|
||
|
installcheck-force: regresscheck-install-force isolationcheck-install-force
|
||
|
|
||
|
check: regresscheck isolationcheck
|
||
|
|
||
|
submake-regress:
|
||
|
$(MAKE) -C $(top_builddir)/src/test/regress all
|
||
|
|
||
|
submake-isolation:
|
||
|
$(MAKE) -C $(top_builddir)/src/test/isolation all
|
||
|
|
||
|
submake-test_decoding:
|
||
|
$(MAKE) -C $(top_builddir)/contrib/test_decoding
|
||
|
|
||
|
REGRESSCHECKS=ddl rewrite toast permissions decoding_in_xact binary
|
||
|
|
||
|
regresscheck: all | submake-regress submake-test_decoding
|
||
|
$(pg_regress_check) \
|
||
|
--temp-config $(top_srcdir)/contrib/test_decoding/logical.conf \
|
||
|
--temp-install=./tmp_check \
|
||
|
--extra-install=contrib/test_decoding \
|
||
|
$(REGRESSCHECKS)
|
||
|
|
||
|
regresscheck-install-force: | submake-regress submake-test_decoding
|
||
|
$(pg_regress_installcheck) \
|
||
|
--extra-install=contrib/test_decoding \
|
||
|
$(REGRESSCHECKS)
|
||
|
|
||
|
ISOLATIONCHECKS=mxact delayed_startup concurrent_ddl_dml
|
||
|
|
||
|
isolationcheck: all | submake-isolation submake-test_decoding
|
||
|
$(pg_isolation_regress_check) \
|
||
|
--temp-config $(top_srcdir)/contrib/test_decoding/logical.conf \
|
||
|
--extra-install=contrib/test_decoding \
|
||
|
$(ISOLATIONCHECKS)
|
||
|
|
||
|
isolationcheck-install-force: all | submake-isolation submake-test_decoding
|
||
|
$(pg_isolation_regress_installcheck) \
|
||
|
--extra-install=contrib/test_decoding \
|
||
|
$(ISOLATIONCHECKS)
|
||
|
|
||
|
PHONY: submake-test_decoding submake-regress check \
|
||
|
regresscheck regresscheck-install-force \
|
||
|
isolationcheck isolationcheck-install-force
|