From: Peter Eisentraut Date: Mon, 5 Mar 2012 18:19:20 +0000 (+0200) Subject: Add isolation test to check-world and installcheck-world X-Git-Tag: REL9_2_BETA1~330 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cecdf6d4596976bb378ca194bba55a242b883d2d;p=postgresql Add isolation test to check-world and installcheck-world --- diff --git a/GNUmakefile.in b/GNUmakefile.in index 50fae4128a..5ebdb8b202 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -64,7 +64,7 @@ distclean maintainer-clean: check: all check installcheck installcheck-parallel: - $(MAKE) -C src/test $@ + $(MAKE) -C src/test/regress $@ $(call recurse,check-world,src/test src/pl src/interfaces/ecpg contrib,check) diff --git a/src/test/Makefile b/src/test/Makefile index e8cf7041b4..0fd7eabf08 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -1,15 +1,17 @@ #------------------------------------------------------------------------- # -# Makefile.inc-- -# Makefile for test suites +# Makefile for src/test # # Copyright (c) 1994, Regents of the University of California # -# -# IDENTIFICATION -# src/test/Makefile +# src/test/Makefile # #------------------------------------------------------------------------- -.DEFAULT: - $(MAKE) -C regress $@ +subdir = src/test +top_builddir = ../.. +include $(top_builddir)/src/Makefile.global + +SUBDIRS = regress isolation + +$(recurse)