mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-21 03:13:05 +08:00
7d1aa6bf1c
These tests were disabled back in 2018 (commit d3c09b9b1
) because of
failures observed in the buildfarm. I've not been able to reproduce
any failure on longfin's host, though, so I'm curious whether or to
what extent we've fixed the problem. Let's re-enable it (in HEAD
only) and see what blows up.
Discussion: https://postgr.es/m/2769443.1632773967@sss.pgh.pa.us
31 lines
523 B
Makefile
31 lines
523 B
Makefile
# contrib/bloom/Makefile
|
|
|
|
MODULE_big = bloom
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
blcost.o \
|
|
blinsert.o \
|
|
blscan.o \
|
|
blutils.o \
|
|
blvacuum.o \
|
|
blvalidate.o
|
|
|
|
EXTENSION = bloom
|
|
DATA = bloom--1.0.sql
|
|
PGFILEDESC = "bloom access method - signature file based index"
|
|
|
|
REGRESS = bloom
|
|
|
|
TAP_TESTS = 1
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/bloom
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|