# src/test/modules/snapshot_too_old/Makefile

# 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)

ISOLATIONCHECKS=sto_using_cursor sto_using_select sto_using_hash_index

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = src/test/modules/snapshot_too_old
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif

# Disabled because these tests require "old_snapshot_threshold" >= 0, 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: isolationcheck-install-force

check: isolationcheck

submake-isolation:
	$(MAKE) -C $(top_builddir)/src/test/isolation all

submake-test_snapshot_too_old:
	$(MAKE) -C $(top_builddir)/src/test/modules/snapshot_too_old

isolationcheck: | submake-isolation submake-test_snapshot_too_old temp-install
	$(pg_isolation_regress_check) \
	    --temp-config $(top_srcdir)/src/test/modules/snapshot_too_old/sto.conf \
	    $(ISOLATIONCHECKS)

isolationcheck-install-force: all | submake-isolation submake-test_snapshot_too_old temp-install
	$(pg_isolation_regress_installcheck) \
	    $(ISOLATIONCHECKS)

.PHONY: check submake-test_snapshot_too_old isolationcheck isolationcheck-install-force
