postgresql/src/test/modules
Michael Paquier 1d7dd18686 Revert all new recent changes to add PGXS options for TAP and isolation
A set of failures in buildfarm machines are proving that this is not
quite ready yet because of another set of issues:
- MSVC scripts assume that REGRESS_OPTS can only use top_builddir.  Some
test suites actually finish by using top_srcdir, like pg_stat_statements
which cause the regression tests to never run.
- Trying to enforce top_builddir does not work either when using VPATH
as this is not recognized properly.
- TAP tests of bloom are unstable on various platforms, causing various
failures.
2018-11-26 11:12:11 +09:00
..
brin Revert all new recent changes to add PGXS options for TAP and isolation 2018-11-26 11:12:11 +09:00
commit_ts Revert all new recent changes to add PGXS options for TAP and isolation 2018-11-26 11:12:11 +09:00
dummy_seclabel Replace AclObjectKind with ObjectType 2018-01-19 14:01:15 -05:00
snapshot_too_old Revert all new recent changes to add PGXS options for TAP and isolation 2018-11-26 11:12:11 +09:00
test_bloomfilter Post-feature-freeze pgindent run. 2018-04-26 14:47:16 -04:00
test_ddl_deparse Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
test_extensions psql: Use more consistent capitalization of some output headings 2017-06-13 14:41:14 -04:00
test_parser Update copyright for 2018 2018-01-02 23:30:12 -05:00
test_pg_dump Revert all new recent changes to add PGXS options for TAP and isolation 2018-11-26 11:12:11 +09:00
test_predtest Remove WITH OIDS support, change oid catalog column visibility. 2018-11-20 16:00:17 -08:00
test_rbtree Rename rbtree.c functions to use "rbt" prefix not "rb" prefix. 2018-11-06 13:25:24 -05:00
test_rls_hooks Create an RTE field to record the query's lock mode for each relation. 2018-09-30 13:55:51 -04:00
test_shm_mq Add WL_EXIT_ON_PM_DEATH pseudo-event. 2018-11-23 20:46:34 +13:00
worker_spi Silence compiler warnings 2018-11-23 13:01:05 -03:00
Makefile Fix partial-build problems introduced by having more generated headers. 2018-04-09 16:42:10 -04:00
README Add README in src/test and src/test/modules 2016-02-25 21:08:32 -03:00

Test extensions and libraries
=============================

src/test/modules contains PostgreSQL extensions that are primarily or entirely
intended for testing PostgreSQL and/or to serve as example code. The extensions
here aren't intended to be installed in a production server and aren't suitable
for "real work".

Most extensions have their own pg_regress tests or isolationtester specs. Some
are also used by tests elsewhere in the tree.

If you're adding new hooks or other functionality exposed as C-level API this
is where to add the tests for it.