From d8f2434296c12911df55989343d975beb9d4a656 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 22 Aug 2006 11:26:27 +0000 Subject: r17708: make the automated testing of the ldb ldap backend more portable (This used to be commit bf88bc5de61c3c20d77e2d73e27e741031e9ec06) --- source4/lib/ldb/tests/init_slapd.sh | 12 +++++++----- source4/lib/ldb/tests/test-ldap.sh | 4 ++-- 2 files changed, 9 insertions(+), 7 deletions(-) (limited to 'source4') diff --git a/source4/lib/ldb/tests/init_slapd.sh b/source4/lib/ldb/tests/init_slapd.sh index c50ea0ecab..be3e99365c 100755 --- a/source4/lib/ldb/tests/init_slapd.sh +++ b/source4/lib/ldb/tests/init_slapd.sh @@ -8,11 +8,13 @@ fi rm -rf tests/tmp/db mkdir -p tests/tmp/db -if pidof slapd > /dev/null; then - killall slapd +if [ -f tests/tmp/slapd.pid ]; then + kill `cat tests/tmp/slapd.pid` + sleep 1 fi -sleep 2 -if pidof slapd > /dev/null; then - killall -9 slapd +if [ -f tests/tmp/slapd.pid ]; then + kill -9 `cat tests/tmp/slapd.pid` + rm -f tests/tmp/slapd.pid fi + slapadd -f $LDBDIR/tests/slapd.conf < $LDBDIR/tests/init.ldif || exit 1 diff --git a/source4/lib/ldb/tests/test-ldap.sh b/source4/lib/ldb/tests/test-ldap.sh index 592e09f408..e2ce81c99f 100755 --- a/source4/lib/ldb/tests/test-ldap.sh +++ b/source4/lib/ldb/tests/test-ldap.sh @@ -16,11 +16,11 @@ for f in $SCHEMA_NEEDED; do continue; fi - echo "ERROR: you need the following OpenLDAP schema files in tests/schema/" + echo "SKIPPING TESTS: you need the following OpenLDAP schema files" for f in $SCHEMA_NEEDED; do echo " $f.schema" done - exit 1 + exit 0 fi done -- cgit