From 418ac644ce3c51c73c50166f126392610c5c2d0e Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Sun, 10 Oct 2021 13:49:12 -0700 Subject: [PATCH v5 13/16] 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 5a9a0098327..8850fc1cb1b 100644 --- a/src/test/ldap/t/001_auth.pl +++ b/src/test/ldap/t/001_auth.pl @@ -6,6 +6,13 @@ use warnings; use PostgreSQL::Test::Utils; use PostgreSQL::Test::Cluster; 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