Skip to content

Commit 00d7e2f

Browse files
committed
Make TAP test suites to work, when @inc does not contain current dir.
Recent Perl and/or new Linux distributions are starting to remove "." from the @inc list by default. That breaks pg_rewind and ssl test suites, which use helper perl modules that reside in the same directory. To fix, add the current source directory explicitly to prove's include dir. The vcregress.pl script probably also needs something like this, but I wasn't able to remove '.' from @inc on Windows to test this, and don't want to try doing that blindly. Discussion: <20160908204529.flg6nivjuwp5vaoy@alap3.anarazel.de>
1 parent 010a1b5 commit 00d7e2f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Makefile.global.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,9 @@ endif
331331
endif
332332

333333
PROVE = @PROVE@
334-
PG_PROVE_FLAGS = -I $(top_srcdir)/src/test/perl/
334+
# There are common routines in src/test/perl, and some test suites have
335+
# extra perl modules in their own directory.
336+
PG_PROVE_FLAGS = -I $(top_srcdir)/src/test/perl/ -I $(srcdir)
335337
PROVE_FLAGS = --verbose
336338

337339
# prepend to path if already set, else just set it

0 commit comments

Comments
 (0)