postgresql/src/test
2017-04-06 13:36:54 -07:00
..
authentication Allow SCRAM authentication, when pg_hba.conf says 'md5'. 2017-03-24 13:32:21 +02:00
examples
isolation Add isolation test for SERIALIZABLE READ ONLY DEFERRABLE. 2017-04-05 10:04:36 -05:00
locale Clean up Perl code according to perlcritic 2017-03-27 08:18:22 -04:00
mb
modules Don't use bgw_main even to specify in-core bgworker entrypoints. 2017-03-31 20:43:32 -04:00
perl Remove --verbose from PROVE_FLAGS 2017-04-04 08:42:09 -04:00
recovery Change 'diag' to 'note' in TAP tests 2017-03-28 20:38:06 -04:00
regress Increase parallel bitmap scan test coverage. 2017-04-06 13:36:54 -07:00
ssl Change 'diag' to 'note' in TAP tests 2017-03-28 20:38:06 -04:00
subscription Fix logical replication between different encodings 2017-04-06 14:41:09 -04:00
thread
Makefile
README

PostgreSQL tests
================

This directory contains a variety of test infrastructure as well as some of the
tests in PostgreSQL. Not all tests are here -- in particular, there are more in
individual contrib/ modules and in src/bin.

Not all these tests get run by "make check". Check src/test/Makefile to see
which tests get run automatically.

authentication/
  Tests for authentication

examples/
  Demonstration programs for libpq that double as regression tests via
  "make check"

isolation/
  Tests for concurrent behavior at the SQL level

locale/
  Sanity checks for locale data, encodings, etc

mb/
  Tests for multibyte encoding (UTF-8) support

modules/
  Extensions used only or mainly for test purposes, generally not suitable
  for installing in production databases

perl/
  Infrastructure for Perl-based TAP tests

recovery/
  Test suite for recovery and replication

regress/
  PostgreSQL's main regression test suite, pg_regress

ssl/
  Tests to exercise and verify SSL certificate handling

subscription/
  Tests for logical replication

thread/
  A thread-safety-testing utility used by configure