Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions run_build.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2486,6 +2486,11 @@ sub run_misc_tests
? $config_opts->{openssl}
: (grep { $_ eq '--with-openssl' } @$config_opts);

my $using_ldap =
$using_msvc
? $config_opts->{ldap}
: (grep { $_ eq '--with-ldap' } @$config_opts);

## no critic (CodeLayout::ProhibitHardTabs)
foreach my $testdir (
glob(
Expand All @@ -2497,6 +2502,7 @@ sub run_misc_tests
{
my $testname = basename($testdir);
next if $testname =~ /ssl/ && !$using_ssl;
next if $testname =~ /ldap/ && !$using_ldap;
next unless -d "$testdir/t";
next if $using_msvc && $testname eq 'pg_bsd_indent';
next unless step_wanted("module-$testname");
Expand Down