summaryrefslogtreecommitdiff
path: root/src/test/ldap
diff options
context:
space:
mode:
authorAndres Freund2022-03-09 17:46:21 +0000
committerAndres Freund2022-03-09 17:46:21 +0000
commit45fb0de4dc65f43a037fe7c90f360ae0596d9328 (patch)
tree7ab8d2259d280d869744468090228742ebc7bd06 /src/test/ldap
parentee56c3b21629277cf7f2e6398e7dd4e40c11df3c (diff)
ldap tests: Add paths for openbsd.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/test/ldap')
-rw-r--r--src/test/ldap/t/001_auth.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/ldap/t/001_auth.pl b/src/test/ldap/t/001_auth.pl
index 2c7ce2a8aa8..9f15248935a 100644
--- a/src/test/ldap/t/001_auth.pl
+++ b/src/test/ldap/t/001_auth.pl
@@ -40,6 +40,11 @@ elsif ($^O eq 'freebsd')
$slapd = '/usr/local/libexec/slapd';
$ldap_schema_dir = '/usr/local/etc/openldap/schema';
}
+elsif ($^O eq 'openbsd')
+{
+ $slapd = '/usr/local/libexec/slapd';
+ $ldap_schema_dir = '/usr/local/share/examples/openldap/schema';
+}
else
{
plan skip_all => "ldap tests not supported on $^O or dependencies not installed";