Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cecdf6d

Browse files
committed
Add isolation test to check-world and installcheck-world
1 parent 80da9e6 commit cecdf6d

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

GNUmakefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ distclean maintainer-clean:
6464
check: all
6565

6666
check installcheck installcheck-parallel:
67-
$(MAKE) -C src/test $@
67+
$(MAKE) -C src/test/regress $@
6868

6969
$(call recurse,check-world,src/test src/pl src/interfaces/ecpg contrib,check)
7070

src/test/Makefile

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
#-------------------------------------------------------------------------
22
#
3-
# Makefile.inc--
4-
# Makefile for test suites
3+
# Makefile for src/test
54
#
65
# Copyright (c) 1994, Regents of the University of California
76
#
8-
#
9-
# IDENTIFICATION
10-
# src/test/Makefile
7+
# src/test/Makefile
118
#
129
#-------------------------------------------------------------------------
1310

14-
.DEFAULT:
15-
$(MAKE) -C regress $@
11+
subdir = src/test
12+
top_builddir = ../..
13+
include $(top_builddir)/src/Makefile.global
14+
15+
SUBDIRS = regress isolation
16+
17+
$(recurse)

0 commit comments

Comments
 (0)