diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-30 00:04:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-30 00:04:32 +0000 |
commit | bf4bd50ff76d2049ba4a96762e729394b4f8fa22 (patch) | |
tree | 9df58a9d675a70810ab17854fe076046e2e896c8 /doc/src | |
parent | d11e301a15e0c28f5db7caa74ad192fec4351f2f (diff) | |
download | postgresql-bf4bd50ff76d2049ba4a96762e729394b4f8fa22.tar.gz postgresql-bf4bd50ff76d2049ba4a96762e729394b4f8fa22.zip |
Copy refint.so and autoinc.so into the src/test/regress directory during
"make all", and then reference them there during the actual tests. This
makes the handling of these files more parallel to that of regress.so,
and in particular simplifies use of the regression tests outside the
original build tree. The PGDG and Red Hat RPMs have been doing this via
patches for a very long time. Inclusion of the change in core was requested
by Jørgen Austvik of Sun, and I can't see any reason not to.
I attempted to fix the MSVC scripts for this too, but they may need
further tweaking ...
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/regress.sgml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/src/sgml/regress.sgml b/doc/src/sgml/regress.sgml index 9d65e4e0f4a..d09137fcc0f 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.58 2007/06/12 17:49:12 mha Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/regress.sgml,v 1.59 2008/05/30 00:04:32 tgl Exp $ --> <chapter id="regress"> <title id="regress-title">Regression Tests</title> @@ -48,9 +48,9 @@ gmake check script. At the end you should see something like <screen> <computeroutput> -====================== - All 100 tests passed. -====================== +======================= + All 115 tests passed. +======================= </computeroutput> </screen> or otherwise a note about which tests failed. See <xref @@ -67,7 +67,6 @@ gmake check For example <screen> <prompt>root# </prompt><userinput>chmod -R a+w src/test/regress</userinput> -<prompt>root# </prompt><userinput>chmod -R a+w contrib/spi</userinput> <prompt>root# </prompt><userinput>su - joeuser</userinput> <prompt>joeuser$ </prompt><userinput>cd <replaceable>top-level build directory</></userinput> <prompt>joeuser$ </prompt><userinput>gmake check</userinput> |