diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-10-13 23:41:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-10-13 23:41:07 +0000 |
commit | dbc214f7e611ed32bd8208955486ba46d2dbc941 (patch) | |
tree | 4b6574609ee3abe1e71450b39b0f4bb05fe87f7b | |
parent | 412734767a7bf7faf8b777c157f0b7c2bb37f179 (diff) | |
download | postgresql-dbc214f7e611ed32bd8208955486ba46d2dbc941.tar.gz |
Add documentation mentioning that there are separate regression tests
for the PL languages and for contrib.
-rw-r--r-- | doc/src/sgml/regress.sgml | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/doc/src/sgml/regress.sgml b/doc/src/sgml/regress.sgml index d8fafdeabc..742382af74 100644 --- a/doc/src/sgml/regress.sgml +++ b/doc/src/sgml/regress.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/regress.sgml,v 1.47 2005/07/24 17:07:18 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/regress.sgml,v 1.48 2005/10/13 23:41:07 tgl Exp $ --> <chapter id="regress"> <title id="regress-title">Regression Tests</title> @@ -138,6 +138,28 @@ gmake installcheck-parallel default port number, unless directed otherwise by <envar>PGHOST</envar> and <envar>PGPORT</envar> environment variables. </para> + + <para> + The source distribution also contains regression tests for the optional + procedural languages and for some of the <filename>contrib</> modules. + At present, these tests can be used only against an already-installed + server. To run the tests for all procedural languages that have been + built and installed, change to the <filename>src/pl</> directory of the + build tree and type +<screen> +gmake installcheck +</screen> + You can also do this in any of the subdirectories of <filename>src/pl</> + to run tests for just one procedural language. To run the tests for all + <filename>contrib</> modules that have them, change to the + <filename>contrib</> directory of the build tree and type +<screen> +gmake installcheck +</screen> + The <filename>contrib</> modules must have been built and installed first. + You can also do this in a subdirectory of <filename>contrib</> to run + the tests for just one module. + </para> </sect1> <sect1 id="regress-evaluation"> |