aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-03-05 20:19:20 +0200
committerPeter Eisentraut <peter_e@gmx.net>2012-03-05 20:19:20 +0200
commitcecdf6d4596976bb378ca194bba55a242b883d2d (patch)
tree7ccab7706880b25a4f1d322f46d28a49a86e5ea9 /src
parent80da9e68fdd70b796b3a7de3821589513596c0f7 (diff)
downloadpostgresql-cecdf6d4596976bb378ca194bba55a242b883d2d.tar.gz
postgresql-cecdf6d4596976bb378ca194bba55a242b883d2d.zip
Add isolation test to check-world and installcheck-world
Diffstat (limited to 'src')
-rw-r--r--src/test/Makefile16
1 files changed, 9 insertions, 7 deletions
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)