diff options
author | Magnus Hagander | 2007-03-21 19:22:52 +0000 |
---|---|---|
committer | Magnus Hagander | 2007-03-21 19:22:52 +0000 |
commit | 17fdd7833e5244f160049648f118c365aa308b4a (patch) | |
tree | 898cafe20ee7e316515ec0173f9e482775db2e13 /doc/src | |
parent | bebbea0c1e5b6ae15129e737ff4975cf8b04d974 (diff) |
Add documentation about vcregress.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/install-win32.sgml | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/doc/src/sgml/install-win32.sgml b/doc/src/sgml/install-win32.sgml index 68ae49b8209..a4554ffe2c2 100644 --- a/doc/src/sgml/install-win32.sgml +++ b/doc/src/sgml/install-win32.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.34 2007/03/17 17:11:41 mha Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.35 2007/03/21 19:22:52 mha Exp $ --> <chapter id="install-win32"> <title>Installation on <productname>Windows</productname></title> @@ -249,6 +249,42 @@ </sect2> <sect2> + <title>Running the regression tests</title> + + <para> + To run the regression tests, make sure you have completed the build of all + required parts first. Also, make sure that the DLLs required to load all + parts of the system (such as the perl and python DLLs for the procedural + languages) are present in the system PATH. If they are not, set it through + the <filename>buildenv.bat</filename> file. To run the tests, run one of + the following commands from the <filename>src\tools\msvc</filename> + directory: + <screen> + <userinput> + vcregress check + </userinput> + <userinput> + vcregress installcheck + </userinput> + <userinput> + vcregress plcheck + </userinput> + </screen> + + To change the schedule used (default is the parallel), append it to the + commandline like: + <screen> + <userinput> + vcregress check serial + </userinput> + </screen> + + For more information about the regression tests, see + <xref linkend="regress">. + </para> + </sect2> + + <sect2> <title>Building the documentation</title> <para> |