Skip to content

Commit c732756

Browse files
committed
Add 'tap_tests' flag in config_default.pl
This makes the flag more visible for testers using the default file as a template, increasing the likelyhood that the test suite will be run. Also have the flag be displayed in the fake "configure" output, if set. This patch is two new lines only, but perltidy decides to shift things around which makes it appear a bit bigger. Author: Michaël Paquier Reviewed-by: Craig Ringer Discussion: https://www.postgresql.org/message-id/CAB7nPqRet6UAP2APhZAZw%3DVhJ6w-Q-gGLdZkrOqFgd2vc9-ZDw%40mail.gmail.com
1 parent d750b20 commit c732756

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/tools/msvc/Solution.pm

+1
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,7 @@ sub GetFakeConfigure
631631
$cfg .= ' --enable-integer-datetimes'
632632
if ($self->{options}->{integer_datetimes});
633633
$cfg .= ' --enable-nls' if ($self->{options}->{nls});
634+
$cfg .= ' --enable-tap-tests' if ($self->{options}->{tap_tests});
634635
$cfg .= ' --with-ldap' if ($self->{options}->{ldap});
635636
$cfg .= ' --without-zlib' unless ($self->{options}->{zlib});
636637
$cfg .= ' --with-openssl' if ($self->{options}->{ssl});

src/tools/msvc/config_default.pl

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# wal_segsize => 16, # --with-wal-segsize, 16MB by default
1313
ldap => 1, # --with-ldap
1414
nls => undef, # --enable-nls=<path>
15+
tap_tests => undef, # --enable-tap-tests
1516
tcl => undef, # --with-tls=<path>
1617
perl => undef, # --with-perl
1718
python => undef, # --with-python=<path>

0 commit comments

Comments
 (0)