postgresql/src/test/modules
Alvaro Herrera 9def031bd2 Add more tests for commit_timestamp feature
These tests verify that 1) WAL replay preserves the stored value,
2) a streaming standby server replays the value obtained from the
master, and 3) the behavior is sensible in the face of repeated
configuration changes.

One annoyance is that tmp_check/ subdir from the TAP tests is clobbered
when the pg_regress test runs in the same subdirectory.  This is
bothersome but not too terrible a problem, since the pg_regress test is
not run anyway if the TAP tests fail (unless "make -k" is used).

I had these tests around since commit 69e7235c93e2; add them now that we
have the recovery test framework in place.
2016-03-01 19:53:18 -03:00
..
brin Re-add BRIN isolation test 2015-08-13 14:41:52 -03:00
commit_ts Add more tests for commit_timestamp feature 2016-03-01 19:53:18 -03:00
dummy_seclabel Update copyright for 2016 2016-01-02 13:33:40 -05:00
test_ddl_deparse Update copyright for 2016 2016-01-02 14:19:48 -05:00
test_extensions Add CASCADE support for CREATE EXTENSION. 2015-10-03 18:23:40 +02:00
test_parser Update copyright for 2016 2016-01-02 13:33:40 -05:00
test_rls_hooks Update copyright for 2016 2016-01-02 14:19:48 -05:00
test_shm_mq Update copyright for 2016 2016-01-02 14:19:48 -05:00
worker_spi Update copyright for 2016 2016-01-02 14:19:48 -05:00
Makefile Add CASCADE support for CREATE EXTENSION. 2015-10-03 18:23:40 +02: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.