diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-03-05 20:19:20 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-03-05 20:19:20 +0200 |
commit | cecdf6d4596976bb378ca194bba55a242b883d2d (patch) | |
tree | 7ccab7706880b25a4f1d322f46d28a49a86e5ea9 | |
parent | 80da9e68fdd70b796b3a7de3821589513596c0f7 (diff) | |
download | postgresql-cecdf6d4596976bb378ca194bba55a242b883d2d.tar.gz postgresql-cecdf6d4596976bb378ca194bba55a242b883d2d.zip |
Add isolation test to check-world and installcheck-world
-rw-r--r-- | GNUmakefile.in | 2 | ||||
-rw-r--r-- | src/test/Makefile | 16 |
2 files changed, 10 insertions, 8 deletions
diff --git a/GNUmakefile.in b/GNUmakefile.in index 50fae4128aa..5ebdb8b202c 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 e8cf7041b4a..0fd7eabf08f 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) |