From: Andres Freund Date: Sun, 10 Oct 2021 13:49:12 -0700 Subject: [PATCH v3 14/17] wip: don't run ldap tests on windows. --- src/test/ldap/t/001_auth.pl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/test/ldap/t/001_auth.pl b/src/test/ldap/t/001_auth.pl index a025a641b02..c921a3d4872 100644 --- a/src/test/ldap/t/001_auth.pl +++ b/src/test/ldap/t/001_auth.pl @@ -6,6 +6,13 @@ use warnings; use TestLib; use PostgresNode; use Test::More; +use Config; + +if ($Config{osname} eq 'MSWin32') +{ + plan skip_all => 'ldap tests '; + exit; +} if ($ENV{with_ldap} eq 'yes') { -- 2.23.0.385.gbc12974a89 --qozqt6hocm2wibt2 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v3-0015-wip-split-TESTDIR-into-two.patch"