diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-11-26 11:12:11 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-11-26 11:12:11 +0900 |
commit | 1d7dd18686d0373289a3bf2b3669edae20875cbc (patch) | |
tree | 5564005e2fe623af69b01d56c9c72baf8ec68402 /src/test/modules/commit_ts | |
parent | 3955cae0c5241f5a67b15a3da2cd524c3839f8c9 (diff) | |
download | postgresql-1d7dd18686d0373289a3bf2b3669edae20875cbc.tar.gz postgresql-1d7dd18686d0373289a3bf2b3669edae20875cbc.zip |
Revert all new recent changes to add PGXS options for TAP and isolation
A set of failures in buildfarm machines are proving that this is not
quite ready yet because of another set of issues:
- MSVC scripts assume that REGRESS_OPTS can only use top_builddir. Some
test suites actually finish by using top_srcdir, like pg_stat_statements
which cause the regression tests to never run.
- Trying to enforce top_builddir does not work either when using VPATH
as this is not recognized properly.
- TAP tests of bloom are unstable on various platforms, causing various
failures.
Diffstat (limited to 'src/test/modules/commit_ts')
-rw-r--r-- | src/test/modules/commit_ts/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/test/modules/commit_ts/Makefile b/src/test/modules/commit_ts/Makefile index 7a24bb3c6d9..6d4f3be358e 100644 --- a/src/test/modules/commit_ts/Makefile +++ b/src/test/modules/commit_ts/Makefile @@ -2,7 +2,6 @@ REGRESS = commit_timestamp REGRESS_OPTS = --temp-config=$(top_srcdir)/src/test/modules/commit_ts/commit_ts.conf -TAP_TESTS = 1 ifdef USE_PGXS PG_CONFIG = pg_config @@ -14,3 +13,8 @@ top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global include $(top_srcdir)/contrib/contrib-global.mk endif + +check: prove-check + +prove-check: | temp-install + $(prove_check) |