diff options
author | Andres Freund <andres@anarazel.de> | 2022-03-09 09:46:21 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-03-09 09:46:21 -0800 |
commit | 45fb0de4dc65f43a037fe7c90f360ae0596d9328 (patch) | |
tree | 7ab8d2259d280d869744468090228742ebc7bd06 | |
parent | ee56c3b21629277cf7f2e6398e7dd4e40c11df3c (diff) | |
download | postgresql-45fb0de4dc65f43a037fe7c90f360ae0596d9328.tar.gz postgresql-45fb0de4dc65f43a037fe7c90f360ae0596d9328.zip |
ldap tests: Add paths for openbsd.
Discussion: https://postgr.es/m/721828a7-3043-6803-a85b-da63538db3cc@enterprisedb.com
-rw-r--r-- | src/test/ldap/t/001_auth.pl | 5 |
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"; |