Skip to content

Commit d036fd4

Browse files
committed
Fix default msvc configuration ignoring tap tests. We'll need tap tests for our feature
1 parent 1362e7f commit d036fd4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/tools/msvc/Solution.pm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -627,6 +627,7 @@ sub GetFakeConfigure
627627
$cfg .= ' --enable-integer-datetimes'
628628
if ($self->{options}->{integer_datetimes});
629629
$cfg .= ' --enable-nls' if ($self->{options}->{nls});
630+
$cfg .= ' --enable-tap-tests' if ($self->{options}->{tap_tests});
630631
$cfg .= ' --with-ldap' if ($self->{options}->{ldap});
631632
$cfg .= ' --without-zlib' unless ($self->{options}->{zlib});
632633
$cfg .= ' --with-extra-version' if ($self->{options}->{extraver});

src/tools/msvc/config_default.pl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
ldap => 1, # --with-ldap
1717
extraver => undef, # --with-extra-version=<string>
1818
nls => undef, # --enable-nls=<path>
19+
tap_tests=> undef, # --enable-tap-tests
1920
tcl => undef, # --with-tls=<path>
2021
perl => undef, # --with-perl
2122
python => undef, # --with-python=<path>

0 commit comments

Comments
 (0)