mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
The default behaviour of fopen() when called on a named pipe which does not have any reader, is to block, until a reader opens the pipe. This blocks slapo-auditlog when it attempts to write output. Depending on how critical the audit log is, it may be preferable to discard audit log output and continue processing requests if there's no reader available. For clarity the call to fopen() is removed and replaced with open()/fdopen(), allowing us to specify O_* flags as opposed to using fopen() or open()/fdopen(). 0666 are the base permissions used by fopen() when files are created. |
||
|---|---|---|
| .. | ||
| data | ||
| modules | ||
| progs | ||
| python | ||
| scripts | ||
| Makefile.in | ||
| README | ||
| run.in | ||
This directory contains a series of test scripts which are used to verify basic functionality of the LDAP libraries and slapd. To run all of the tests, type "make test". To run MDB tests, type "make mdb". To run SQL tests, define SLAPD_USE_SQL=<rdbms> and type "make sql"; define SLAPD_USE_SQLWRITE=yes to enable write tests as well. To run WT tests, type "make wt". To run regression tests, type "make regressions" The test scripts depends on a number of tools commonly available on Unix (and Unix-like) systems. While attempts have been made to make these scripts reasonably portable, they may not run properly on your system. You may have to adjust your path so that compatible versions of tools used are available to the scripts and/or you may have to install replacement tools. Platform specific hints may be found at: http://www.openldap.org/faq/index.cgi?file=9 To modify the debug level the tests run slapd with, set the SLAPD_DEBUG environment variable. env SLAPD_DEBUG=1 make test