diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-11-29 09:39:07 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-11-29 09:39:07 +0900 |
commit | d79fb5d2370cc9166029b7afd17a26355598730a (patch) | |
tree | 7743e5e550decc4f23ca54d829bfb3a339cc217a /src/test/modules/commit_ts | |
parent | 4c703369af3e34cd7289d99c1b6f10e3b3bbbb4d (diff) | |
download | postgresql-d79fb5d2370cc9166029b7afd17a26355598730a.tar.gz postgresql-d79fb5d2370cc9166029b7afd17a26355598730a.zip |
Add missing NO_INSTALLCHECK in commit_ts and test_rls_hooks
This bypasses installcheck if specified, which makes sense for those
modules as they require non-default configuration, something which
typical users don't have. Those have been missing from the start, still
no back-patch is done.
This will be used by an upcoming patch for MSVC scripts adding support
for NO_INSTALLCHECK as installcheck is the default mode for contrib and
modules for performance reasons in the buildfarm.
Author: Michael Paquier
Reviewed-by: Andrew Dunstan
Discussion: https://postgr.es/m/20181126054302.GI1776@paquier.xyz
Diffstat (limited to 'src/test/modules/commit_ts')
-rw-r--r-- | src/test/modules/commit_ts/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/modules/commit_ts/Makefile b/src/test/modules/commit_ts/Makefile index 6d4f3be358e..6a9c3971fbc 100644 --- a/src/test/modules/commit_ts/Makefile +++ b/src/test/modules/commit_ts/Makefile @@ -2,6 +2,9 @@ REGRESS = commit_timestamp REGRESS_OPTS = --temp-config=$(top_srcdir)/src/test/modules/commit_ts/commit_ts.conf +# Disabled because these tests require "track_commit_timestamp = on", +# which typical installcheck users do not have (e.g. buildfarm clients). +NO_INSTALLCHECK = 1 ifdef USE_PGXS PG_CONFIG = pg_config |