diff options
Diffstat (limited to 'doc/src/sgml/install-windows.sgml')
-rw-r--r-- | doc/src/sgml/install-windows.sgml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/src/sgml/install-windows.sgml b/doc/src/sgml/install-windows.sgml index 9b77648627f..a4d28d6eab7 100644 --- a/doc/src/sgml/install-windows.sgml +++ b/doc/src/sgml/install-windows.sgml @@ -438,6 +438,7 @@ $ENV{CONFIG}="Debug"; <userinput>vcregress contribcheck</userinput> <userinput>vcregress ecpgcheck</userinput> <userinput>vcregress isolationcheck</userinput> +<userinput>vcregress tapcheck</userinput> <userinput>vcregress upgradecheck</userinput> </screen> @@ -450,6 +451,29 @@ $ENV{CONFIG}="Debug"; For more information about the regression tests, see <xref linkend="regress">. </para> + + <para> + Running the TAP regression tests, with "vcregress tapcheck", requires an + additional Perl module to be installed: + <variablelist> + <varlistentry> + <term><productname>IPC::Run</productname></term> + <listitem><para> + As of this writing, <literal>IPC::Run</> is not included in the + ActiveState Perl installation, nor in the ActiveState Perl Package + Manager (PPM) library. To install, download the + <filename>IPC-Run-<version>.tar.gz</> source archive from CPAN, + at <ulink url="http://search.cpan.org/dist/IPC-Run/"></>, and + uncompress. Edit the <filename>buildenv.pl</> file, and add a PERL5LIB + variable to point to the <filename>lib</> subdirectory from the + extracted archive. For example: +<programlisting> +$ENV{PERL5LIB}=$ENV{PERL5LIB} . ';c:\IPC-Run-0.94\lib'; +</programlisting> + </para></listitem> + </varlistentry> + </variablelist> + </para> </sect2> <sect2> |