mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
Provide NO_INSTALLCHECK option for pgxs.
This allows us to avoid running the regression tests in contrib modules like pg_stat_statement in a less ugly manner. Discussion: <22432.1478968242@sss.pgh.pa.us>
This commit is contained in:
parent
c99f876e9a
commit
ffa8c3d852
@ -13,6 +13,9 @@ LDFLAGS_SL += $(filter -lm, $(LIBS))
|
|||||||
|
|
||||||
REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/pg_stat_statements/pg_stat_statements.conf
|
REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/pg_stat_statements/pg_stat_statements.conf
|
||||||
REGRESS = pg_stat_statements
|
REGRESS = pg_stat_statements
|
||||||
|
# Disabled because these tests require "shared_preload_libraries=pg_stat_statements",
|
||||||
|
# which typical installcheck users do not have (e.g. buildfarm clients).
|
||||||
|
NO_INSTALLCHECK = 1
|
||||||
|
|
||||||
ifdef USE_PGXS
|
ifdef USE_PGXS
|
||||||
PG_CONFIG = pg_config
|
PG_CONFIG = pg_config
|
||||||
@ -24,7 +27,3 @@ top_builddir = ../..
|
|||||||
include $(top_builddir)/src/Makefile.global
|
include $(top_builddir)/src/Makefile.global
|
||||||
include $(top_srcdir)/contrib/contrib-global.mk
|
include $(top_srcdir)/contrib/contrib-global.mk
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Disabled because these tests require "shared_preload_libraries=pg_stat_statements",
|
|
||||||
# which typical installcheck users do not have (e.g. buildfarm clients).
|
|
||||||
installcheck: REGRESS=
|
|
||||||
|
@ -1193,6 +1193,15 @@ include $(PGXS)
|
|||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>NO_INSTALLCHECK</varname></term>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
don't define an installcheck target, useful e.g. if tests require special configuration, or don't use pg_regress
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>EXTRA_CLEAN</varname></term>
|
<term><varname>EXTRA_CLEAN</varname></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
@ -40,6 +40,8 @@
|
|||||||
# which need to be built first
|
# which need to be built first
|
||||||
# REGRESS -- list of regression test cases (without suffix)
|
# REGRESS -- list of regression test cases (without suffix)
|
||||||
# REGRESS_OPTS -- additional switches to pass to pg_regress
|
# REGRESS_OPTS -- additional switches to pass to pg_regress
|
||||||
|
# NO_INSTALLCHECK -- don't define an installcheck target, useful e.g. if
|
||||||
|
# tests require special configuration, or don't use pg_regress
|
||||||
# EXTRA_CLEAN -- extra files to remove in 'make clean'
|
# EXTRA_CLEAN -- extra files to remove in 'make clean'
|
||||||
# PG_CPPFLAGS -- will be added to CPPFLAGS
|
# PG_CPPFLAGS -- will be added to CPPFLAGS
|
||||||
# PG_LIBS -- will be added to PROGRAM link line
|
# PG_LIBS -- will be added to PROGRAM link line
|
||||||
@ -268,8 +270,10 @@ ifndef PGXS
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# against installed postmaster
|
# against installed postmaster
|
||||||
|
ifndef NO_INSTALLCHECK
|
||||||
installcheck: submake $(REGRESS_PREP)
|
installcheck: submake $(REGRESS_PREP)
|
||||||
$(pg_regress_installcheck) $(REGRESS_OPTS) $(REGRESS)
|
$(pg_regress_installcheck) $(REGRESS_OPTS) $(REGRESS)
|
||||||
|
endif
|
||||||
|
|
||||||
ifdef PGXS
|
ifdef PGXS
|
||||||
check:
|
check:
|
||||||
|
Loading…
Reference in New Issue
Block a user