A ref change was pushed to the OpenLDAP (openldap.git) repository. It will be available in the public mirror shortly.
The branch, OPENLDAP_REL_ENG_2_4 has been updated via 5e7b8160621ba7ed369ecebc0d03bed745914447 (commit) via 63efacd5f311cdba77d77ca3c4b79854169c6b65 (commit) via 847b291ad6e6cd10645e00111521cea968bc6b9c (commit) via b7c43d381d5371a4b0ca1f8b008a8ab34fd35b9e (commit) via a0a79fef4b037ca1c437e3c51dd8b70208cec415 (commit) from 6739e0fb11053e66dad9c5e984566956bc074e70 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 5e7b8160621ba7ed369ecebc0d03bed745914447 Author: Quanah Gibson-Mount quanah@openldap.org Date: Mon Aug 20 08:41:36 2012 -0700
ITS#7168, ITS#7344
commit 63efacd5f311cdba77d77ca3c4b79854169c6b65 Author: Howard Chu hyc@openldap.org Date: Thu Aug 2 07:29:55 2012 -0700
ITS#7344 cleanup, integration
commit 847b291ad6e6cd10645e00111521cea968bc6b9c Author: Jan Synacek jsynacek@redhat.com Date: Thu Aug 2 14:57:39 2012 +0200
ITS#7344 Add initial testsuite for slapo-constraint
commit b7c43d381d5371a4b0ca1f8b008a8ab34fd35b9e Author: Howard Chu hyc@openldap.org Date: Mon Jun 25 12:45:32 2012 -0700
ITS#7168 cleanup prev commit
commit a0a79fef4b037ca1c437e3c51dd8b70208cec415 Author: Jan Synacek jsynacek@redhat.com Date: Tue Jun 19 07:00:26 2012 +0200
ITS#7168 Fix count constraint when using multiple modifications
Constraint overlay doesn't take into account multiple modifications when using count.
Red Hat Bugzilla: #742163
-----------------------------------------------------------------------
Summary of changes: CHANGES | 3 + servers/slapd/overlays/constraint.c | 108 +++++++++++++++-------- tests/data/constraint/constraint.out | 25 +++++ tests/data/constraint/root.ldif | 5 + tests/data/constraint/t_fail_01.ldif | 6 ++ tests/data/constraint/t_fail_02.ldif | 8 ++ tests/data/constraint/t_fail_03.ldif | 8 ++ tests/data/constraint/t_fail_04.ldif | 10 ++ tests/data/constraint/t_fail_05.ldif | 13 +++ tests/data/constraint/t_fail_06.ldif | 7 ++ tests/data/constraint/t_fail_07.ldif | 15 +++ tests/data/constraint/t_fail_08.ldif | 12 +++ tests/data/constraint/t_fail_09.ldif | 10 ++ tests/data/constraint/t_fail_10.ldif | 4 + tests/data/constraint/t_fail_11.ldif | 7 ++ tests/data/constraint/t_ok_01.ldif | 3 + tests/data/constraint/t_ok_02.ldif | 5 + tests/data/constraint/t_ok_03.ldif | 6 ++ tests/data/constraint/t_ok_04.ldif | 3 + tests/data/constraint/t_ok_05.ldif | 5 + tests/data/constraint/t_ok_06.ldif | 7 ++ tests/data/constraint/t_ok_07.ldif | 8 ++ tests/data/constraint/t_ok_08.ldif | 12 +++ tests/data/constraint/t_ok_09.ldif | 9 ++ tests/data/constraint/t_ok_10.ldif | 24 +++++ tests/data/constraint/t_ok_11.ldif | 32 +++++++ tests/data/constraint/t_ok_12.ldif | 11 +++ tests/data/constraint/t_ok_13.ldif | 18 ++++ tests/data/constraint/t_ok_14.ldif | 8 ++ tests/data/constraint/user.ldif | 8 ++ tests/run.in | 3 +- tests/scripts/defines.sh | 1 + tests/scripts/test064-constraint | 162 ++++++++++++++++++++++++++++++++++ 33 files changed, 527 insertions(+), 39 deletions(-) create mode 100644 tests/data/constraint/constraint.out create mode 100644 tests/data/constraint/root.ldif create mode 100644 tests/data/constraint/t_fail_01.ldif create mode 100644 tests/data/constraint/t_fail_02.ldif create mode 100644 tests/data/constraint/t_fail_03.ldif create mode 100644 tests/data/constraint/t_fail_04.ldif create mode 100644 tests/data/constraint/t_fail_05.ldif create mode 100644 tests/data/constraint/t_fail_06.ldif create mode 100644 tests/data/constraint/t_fail_07.ldif create mode 100644 tests/data/constraint/t_fail_08.ldif create mode 100644 tests/data/constraint/t_fail_09.ldif create mode 100644 tests/data/constraint/t_fail_10.ldif create mode 100644 tests/data/constraint/t_fail_11.ldif create mode 100644 tests/data/constraint/t_ok_01.ldif create mode 100644 tests/data/constraint/t_ok_02.ldif create mode 100644 tests/data/constraint/t_ok_03.ldif create mode 100644 tests/data/constraint/t_ok_04.ldif create mode 100644 tests/data/constraint/t_ok_05.ldif create mode 100644 tests/data/constraint/t_ok_06.ldif create mode 100644 tests/data/constraint/t_ok_07.ldif create mode 100644 tests/data/constraint/t_ok_08.ldif create mode 100644 tests/data/constraint/t_ok_09.ldif create mode 100644 tests/data/constraint/t_ok_10.ldif create mode 100644 tests/data/constraint/t_ok_11.ldif create mode 100644 tests/data/constraint/t_ok_12.ldif create mode 100644 tests/data/constraint/t_ok_13.ldif create mode 100644 tests/data/constraint/t_ok_14.ldif create mode 100644 tests/data/constraint/user.ldif create mode 100755 tests/scripts/test064-constraint