Makefile 483 Bytes
Newer Older
1 2 3 4 5 6 7
# src/test/modules/Makefile

subdir = src/test/modules
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global

SUBDIRS = \
8
		  brin \
9
		  commit_ts \
10
		  dummy_seclabel \
11
		  snapshot_too_old \
12
		  test_bloomfilter \
13
		  test_ddl_deparse \
14
		  test_extensions \
15
		  test_ginpostinglist \
16
		  test_integerset \
17
		  test_parser \
Stephen Frost's avatar
Stephen Frost committed
18
		  test_pg_dump \
19
		  test_predtest \
20
		  test_rbtree \
21
		  test_rls_hooks \
22
		  test_shm_mq \
23
		  unsafe_tests \
24
		  worker_spi
25 26

$(recurse)