mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-27 03:20:22 +08:00
2aaaf98315
- LDAP MODRDN handling - support paged response - add wt_extended - add config emit - wt_key_read() return WT_NOTFOUND if not found key. - add ext_candidates() - fix idlcache session name - fix warning - don't reuse idlcache cursor - set correct pid when modrdn with newsuperior - fix condition bug - fix send_search_entry() error handling - fix for referral handling - fix for readonly mode - fix sizelimit response - support modrdn - improve modify handling - clear ancestor idlcache - fix for multi-DIT - IMPORTANT CHANGES: Compatibility is broken with previous database table, please restore database from LDIF. - checking for scope=children - sort dn2idl result - fix cursor leak - support db_open with readonly mode - add wt_tool_entry_delete - initialize comp variable - support referrals - implement wt_tool_dn2id_get() and wt_tool_entry_modify() for slapadd -w - skip redundant scan, and more debug message - fix OID conflict with back-passwd - no need to close session, It may cause SEGV. - fixed wt_dn2entry for empty DN - support multiple database - Construct wiredtiger's config parameter. It allow multi line wtconfig settings - add idlcache - fix concurrent modification to a entry with multi values - prevent to add duplicate dn entry - suppress error message "search_near failed: WT_NOTFOUND" - update Debug statements - back-wt does not support subtree rename - fix for @ondra review - update slapd-wt.5 and warning for mode option - add back-wt test into test target - add scope checking
24 lines
1009 B
Plaintext
24 lines
1009 B
Plaintext
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
|
|
|