postgresql/src/test
2017-09-23 12:56:31 -04:00
..
authentication Post-PG 10 beta1 pgperltidy run 2017-05-17 19:01:23 -04:00
examples Update copyright via script for 2017 2017-01-03 13:48:53 -05:00
isolation Remove unnecessary parentheses in return statements 2017-09-05 14:52:55 -04:00
ldap src/test/ldap: Fix test function in Linux port 2017-09-16 00:39:37 +02:00
locale Clean up Perl code according to perlcritic 2017-03-27 08:18:22 -04:00
mb Fix MB regression tests for WAL-logging of hash indexes. 2017-03-15 07:25:36 -04:00
modules Test BRIN autosummarization 2017-09-23 14:15:06 +02:00
perl Fix RecursiveCopy.pm to cope with disappearing files. 2017-09-11 22:02:58 -04:00
recovery Ten-second timeout in 013_crash_restart.pl is not enough, let's try 60. 2017-09-23 12:56:31 -04:00
regress Provide a test for variable existence in psql 2017-09-21 19:02:23 -04:00
ssl Remove incorrect comment 2017-06-17 10:19:48 +02:00
subscription Fix instability in subscription regression test. 2017-09-20 11:28:34 -04:00
thread Avoid use of bool in thread_test.c 2017-09-14 13:27:54 -04:00
Makefile Add LDAP authentication test suite 2017-09-15 11:44:29 -04:00
README Add TAP tests for password-based authentication methods. 2017-03-17 11:34:16 +02:00

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