mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Previously if a directory had both isolationtester and plain regression tests, they couldn't be run in parallel, because they'd access the same files/directories. That, so far, only affected contrib/test_decoding. Rather than fix that locally in contrib/test_decoding, improve pg_regress_isolation_[install]check to use separate resources from plain regression tests. That requires a minor change in pg_regress, namely that the --outputdir is created if not already existing, that seems like good idea anyway. Use the improved helpers even where previously not used. Author: Tom Lane and Andres Freund Discussion: https://postgr.es/m/20170311194831.vm5ikpczq52c2drg@alap3.anarazel.de
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# contrib/test_decoding/Makefile
 | 
						|
 | 
						|
MODULES = test_decoding
 | 
						|
PGFILEDESC = "test_decoding - example of a logical decoding output plugin"
 | 
						|
 | 
						|
# Note: because we don't tell the Makefile there are any regression tests,
 | 
						|
# we have to clean those result files explicitly
 | 
						|
EXTRA_CLEAN = $(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 xact rewrite toast permissions decoding_in_xact \
 | 
						|
	decoding_into_rel binary prepared replorigin time messages \
 | 
						|
	spill slot
 | 
						|
 | 
						|
regresscheck: | submake-regress submake-test_decoding temp-install
 | 
						|
	$(pg_regress_check) \
 | 
						|
	    --temp-config $(top_srcdir)/contrib/test_decoding/logical.conf \
 | 
						|
	    $(REGRESSCHECKS)
 | 
						|
 | 
						|
regresscheck-install-force: | submake-regress submake-test_decoding temp-install
 | 
						|
	$(pg_regress_installcheck) \
 | 
						|
	    $(REGRESSCHECKS)
 | 
						|
 | 
						|
ISOLATIONCHECKS=mxact delayed_startup ondisk_startup concurrent_ddl_dml
 | 
						|
 | 
						|
isolationcheck: | submake-isolation submake-test_decoding temp-install
 | 
						|
	$(pg_isolation_regress_check) \
 | 
						|
	    --temp-config $(top_srcdir)/contrib/test_decoding/logical.conf \
 | 
						|
	    $(ISOLATIONCHECKS)
 | 
						|
 | 
						|
isolationcheck-install-force: all | submake-isolation submake-test_decoding temp-install
 | 
						|
	$(pg_isolation_regress_installcheck) \
 | 
						|
	    $(ISOLATIONCHECKS)
 | 
						|
 | 
						|
.PHONY: submake-test_decoding submake-regress check \
 | 
						|
	regresscheck regresscheck-install-force \
 | 
						|
	isolationcheck isolationcheck-install-force
 | 
						|
 | 
						|
temp-install: EXTRA_INSTALL=contrib/test_decoding
 |