From: Kurt Zeilenga Date: Mon, 1 Oct 2001 17:13:01 +0000 (+0000) Subject: Adjust test007 read/write ratio X-Git-Tag: OPENLDAP_REL_ENG_2_0_16~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48c6c6597ced235bc5f183e3c52dc9c4c96ce3d6;p=thirdparty%2Fopenldap.git Adjust test007 read/write ratio --- diff --git a/CHANGES b/CHANGES index 4bae74ba5c..025dced24f 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,7 @@ OpenLDAP 2.0.16 Engineering Build environment Updated slapd.conf with ACL example Updated pthread detection + Adjust test 7 read/write ratio OpenLDAP 2.0.15 Release Fixed -lldap TLS external handling diff --git a/tests/progs/slapd-read.c b/tests/progs/slapd-read.c index 94f3d21940..e11995a6ff 100644 --- a/tests/progs/slapd-read.c +++ b/tests/progs/slapd-read.c @@ -75,8 +75,7 @@ main( int argc, char **argv ) } - do_read( host, port, entry, ( 4 * loops )); - + do_read( host, port, entry, ( 10 * loops )); exit( EXIT_SUCCESS ); } diff --git a/tests/progs/slapd-search.c b/tests/progs/slapd-search.c index 996ec68e2f..1737d4d669 100644 --- a/tests/progs/slapd-search.c +++ b/tests/progs/slapd-search.c @@ -81,8 +81,7 @@ main( int argc, char **argv ) } - do_search( host, port, sbase, filter, ( 4 * loops )); - + do_search( host, port, sbase, filter, ( 5 * loops )); exit( EXIT_SUCCESS ); }