|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| authentication/ | H | 08-Nov-2021 | - | 286 | 176 |
| examples/ | H | 08-Nov-2021 | - | 1,306 | 813 |
| isolation/ | H | 08-Nov-2021 | - | 91,863 | 75,521 |
| kerberos/ | H | 08-Nov-2021 | - | 416 | 316 |
| ldap/ | H | 08-Nov-2021 | - | 447 | 334 |
| locale/ | H | 08-Nov-2021 | - | 2,122 | 1,926 |
| mb/ | H | 08-Nov-2021 | - | 410 | 367 |
| modules/ | H | 08-Nov-2021 | - | 13,821 | 10,435 |
| perl/ | H | 08-Nov-2021 | - | 3,565 | 1,727 |
| recovery/ | H | 08-Nov-2021 | - | 4,440 | 3,028 |
| regress/ | H | 08-Nov-2021 | - | 331,245 | 288,356 |
| ssl/ | H | 08-Nov-2021 | - | 2,327 | 1,863 |
| subscription/ | H | 08-Nov-2021 | - | 2,939 | 2,133 |
| thread/ | H | 08-Nov-2021 | - | 542 | 373 |
| Makefile | H A D | 08-Nov-2021 | 1.6 KiB | 53 | 26 |
| README | H A D | 08-Nov-2021 | 1.1 KiB | 48 | 33 |
README
1PostgreSQL tests
2================
3
4This directory contains a variety of test infrastructure as well as some of the
5tests in PostgreSQL. Not all tests are here -- in particular, there are more in
6individual contrib/ modules and in src/bin.
7
8Not all these tests get run by "make check". Check src/test/Makefile to see
9which tests get run automatically.
10
11authentication/
12 Tests for authentication
13
14examples/
15 Demonstration programs for libpq that double as regression tests via
16 "make check"
17
18isolation/
19 Tests for concurrent behavior at the SQL level
20
21locale/
22 Sanity checks for locale data, encodings, etc
23
24mb/
25 Tests for multibyte encoding (UTF-8) support
26
27modules/
28 Extensions used only or mainly for test purposes, generally not suitable
29 for installing in production databases
30
31perl/
32 Infrastructure for Perl-based TAP tests
33
34recovery/
35 Test suite for recovery and replication
36
37regress/
38 PostgreSQL's main regression test suite, pg_regress
39
40ssl/
41 Tests to exercise and verify SSL certificate handling
42
43subscription/
44 Tests for logical replication
45
46thread/
47 A thread-safety-testing utility used by configure
48