|
1 |
| -<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.34 2007/03/17 17:11:41 mha Exp $ --> |
| 1 | +<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.35 2007/03/21 19:22:52 mha Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter id="install-win32">
|
4 | 4 | <title>Installation on <productname>Windows</productname></title>
|
|
248 | 248 | </para>
|
249 | 249 | </sect2>
|
250 | 250 |
|
| 251 | + <sect2> |
| 252 | + <title>Running the regression tests</title> |
| 253 | + |
| 254 | + <para> |
| 255 | + To run the regression tests, make sure you have completed the build of all |
| 256 | + required parts first. Also, make sure that the DLLs required to load all |
| 257 | + parts of the system (such as the perl and python DLLs for the procedural |
| 258 | + languages) are present in the system PATH. If they are not, set it through |
| 259 | + the <filename>buildenv.bat</filename> file. To run the tests, run one of |
| 260 | + the following commands from the <filename>src\tools\msvc</filename> |
| 261 | + directory: |
| 262 | + <screen> |
| 263 | + <userinput> |
| 264 | + vcregress check |
| 265 | + </userinput> |
| 266 | + <userinput> |
| 267 | + vcregress installcheck |
| 268 | + </userinput> |
| 269 | + <userinput> |
| 270 | + vcregress plcheck |
| 271 | + </userinput> |
| 272 | + </screen> |
| 273 | + |
| 274 | + To change the schedule used (default is the parallel), append it to the |
| 275 | + commandline like: |
| 276 | + <screen> |
| 277 | + <userinput> |
| 278 | + vcregress check serial |
| 279 | + </userinput> |
| 280 | + </screen> |
| 281 | + |
| 282 | + For more information about the regression tests, see |
| 283 | + <xref linkend="regress">. |
| 284 | + </para> |
| 285 | + </sect2> |
| 286 | + |
251 | 287 | <sect2>
|
252 | 288 | <title>Building the documentation</title>
|
253 | 289 |
|
|