diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-05-17 18:26:23 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-05-17 18:26:23 +0000 |
| commit | 4e7d6f534913becd050f21dab8f4a7a90fe1c0c3 (patch) | |
| tree | 768f604f2b341d4bc7b1cb9bdb13284dc44f410f /src/pl/tcl | |
| parent | f9ad8a2802a67ee99f1ed7a16999b5faa3c2602f (diff) | |
| download | postgresql-4e7d6f534913becd050f21dab8f4a7a90fe1c0c3.tar.gz | |
Add a --dbname option to the pg_regress script, and use pl_regression
for testing PLs and contrib_regression for testing contrib, instead of
overwriting the core system's regression database as formerly done.
Andrew Dunstan
Diffstat (limited to 'src/pl/tcl')
| -rw-r--r-- | src/pl/tcl/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pl/tcl/Makefile b/src/pl/tcl/Makefile index ff65b0e020..6b7764e942 100644 --- a/src/pl/tcl/Makefile +++ b/src/pl/tcl/Makefile @@ -2,7 +2,7 @@ # # Makefile for the pltcl shared object # -# $PostgreSQL: pgsql/src/pl/tcl/Makefile,v 1.45 2005/05/14 17:55:22 tgl Exp $ +# $PostgreSQL: pgsql/src/pl/tcl/Makefile,v 1.46 2005/05/17 18:26:23 tgl Exp $ # #------------------------------------------------------------------------- @@ -40,6 +40,7 @@ SO_MAJOR_VERSION = 2 SO_MINOR_VERSION = 0 OBJS = pltcl.o +REGRESS_OPTS = --dbname=$(PL_TESTDB) --load-language=pltcl REGRESS = pltcl_setup pltcl_queries include $(top_srcdir)/src/Makefile.shlib @@ -68,7 +69,7 @@ uninstall: $(MAKE) -C modules $@ installcheck: submake - $(SHELL) $(top_builddir)/src/test/regress/pg_regress --load-language=pltcl $(REGRESS) + $(SHELL) $(top_builddir)/src/test/regress/pg_regress $(REGRESS_OPTS) $(REGRESS) .PHONY: submake submake: |
