Index: plperl/GNUmakefile =================================================================== RCS file: /home/cvsmirror/pgsql/src/pl/plperl/GNUmakefile,v retrieving revision 1.18 diff -c -r1.18 GNUmakefile *** plperl/GNUmakefile 19 Nov 2004 19:22:58 -0000 1.18 --- plperl/GNUmakefile 13 May 2005 01:03:13 -0000 *************** *** 53,58 **** --- 53,63 ---- echo "*****" endif + TESTS = plperl + installcheck: + $(top_srcdir)/src/test/regress/pg_regress --load-language=plperl $(TESTS) + + installdirs: $(mkinstalldirs) $(DESTDIR)$(pkglibdir) Index: plpython/Makefile =================================================================== RCS file: /home/cvsmirror/pgsql/src/pl/plpython/Makefile,v retrieving revision 1.18 diff -c -r1.18 Makefile *** plpython/Makefile 19 Nov 2004 19:23:01 -0000 1.18 --- plpython/Makefile 12 May 2005 15:18:03 -0000 *************** *** 85,92 **** rm -f python${pytverstr}.def endif installcheck: ! PATH=$(bindir):$$PATH $(SHELL) $(srcdir)/test.sh else # can't build --- 85,94 ---- rm -f python${pytverstr}.def endif + TESTS = plpython_schema plpython_populate plpython_function plpython_test plpython_error installcheck: ! $(top_srcdir)/src/test/regress/pg_regress --load-language=plpythonu $(TESTS) ! else # can't build Index: tcl/Makefile =================================================================== RCS file: /home/cvsmirror/pgsql/src/pl/tcl/Makefile,v retrieving revision 1.44 diff -c -r1.44 Makefile *** tcl/Makefile 16 Dec 2004 20:41:01 -0000 1.44 --- tcl/Makefile 12 May 2005 16:46:58 -0000 *************** *** 57,62 **** --- 57,68 ---- endif $(MAKE) -C modules $@ + TESTS = pltcl_setup pltcl_queries + installcheck: + $(top_srcdir)/src/test/regress/pg_regress --load-language=pltcl $(TESTS) + + + installdirs: $(mkinstalldirs) $(DESTDIR)$(pkglibdir) $(MAKE) -C modules $@