Detect redundant GROUP BY columns using UNIQUE indexes
[pgsql.git] / src / test / modules / test_slru / Makefile
blobfe4e739043792ee6c875f2e7099f10fedfabf22b
1 # src/test/modules/test_slru/Makefile
3 MODULE_big = test_slru
4 OBJS = \
5 $(WIN32RES) \
6 test_slru.o \
7 test_multixact.o
8 PGFILEDESC = "test_slru - test module for SLRUs"
10 EXTRA_INSTALL=src/test/modules/injection_points
11 export enable_injection_points
12 TAP_TESTS = 1
14 EXTENSION = test_slru
15 DATA = test_slru--1.0.sql
17 REGRESS_OPTS = --temp-config $(top_srcdir)/src/test/modules/test_slru/test_slru.conf
18 REGRESS = test_slru
19 # Disabled because these tests require "shared_preload_libraries=test_slru",
20 # which typical installcheck users do not have (e.g. buildfarm clients).
21 NO_INSTALLCHECK = 1
23 ifdef USE_PGXS
24 PG_CONFIG = pg_config
25 PGXS := $(shell $(PG_CONFIG) --pgxs)
26 include $(PGXS)
27 else
28 subdir = src/test/modules/test_slru
29 top_builddir = ../../../..
30 include $(top_builddir)/src/Makefile.global
31 include $(top_srcdir)/contrib/contrib-global.mk
32 endif