Skip to content

Commit 5a405c0

Browse files
author
Maxim Orlov
committed
Fix double tap test run on pg12+
1 parent 3eecc14 commit 5a405c0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

‎Makefile

+17
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,27 @@ else
5151
REGRESS += array
5252
endif
5353

54+
# For 9.6-11 we have to make specific target with tap tests
55+
SPECIFIC_TAP =
56+
57+
ifeq ($(MAJORVERSION), 9.6)
58+
SPECIFIC_TAP = yes
59+
endif
60+
61+
ifeq ($(MAJORVERSION), 10)
62+
SPECIFIC_TAP = yes
63+
endif
64+
65+
ifeq ($(MAJORVERSION), 11)
66+
SPECIFIC_TAP = yes
67+
endif
68+
69+
ifdef SPECIFIC_TAP
5470
wal-check: temp-install
5571
$(prove_check)
5672

5773
check: wal-check
74+
endif
5875

5976
all: $(SQL_built)
6077

0 commit comments

Comments
 (0)