summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tests
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/ldb/tests')
-rwxr-xr-xsource4/lib/ldb/tests/test-generic.sh3
-rwxr-xr-xsource4/lib/ldb/tests/test-ldap.sh9
2 files changed, 8 insertions, 4 deletions
diff --git a/source4/lib/ldb/tests/test-generic.sh b/source4/lib/ldb/tests/test-generic.sh
index 363bf89065..1f81723d5e 100755
--- a/source4/lib/ldb/tests/test-generic.sh
+++ b/source4/lib/ldb/tests/test-generic.sh
@@ -1,7 +1,8 @@
#!/bin/sh
if [ -z "$LDB_SPECIALS" ]; then
- export LDB_SPECIALS=1
+ LDB_SPECIALS=1
+ export LDB_SPECIALS
fi
echo "LDB_URL: $LDB_URL"
diff --git a/source4/lib/ldb/tests/test-ldap.sh b/source4/lib/ldb/tests/test-ldap.sh
index e2ce81c99f..63e93e0fb0 100755
--- a/source4/lib/ldb/tests/test-ldap.sh
+++ b/source4/lib/ldb/tests/test-ldap.sh
@@ -1,6 +1,7 @@
#!/bin/sh
-export PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
+PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
+export PATH
SCHEMA_NEEDED="core nis cosine inetorgperson openldap"
# setup needed schema files
@@ -29,7 +30,8 @@ if [ -z "$LDBDIR" ]; then
export LDBDIR
fi
-export LDB_URL=`$LDBDIR/tests/ldapi_url.sh`
+LDB_URL=`$LDBDIR/tests/ldapi_url.sh`
+export LDB_URL
PATH=bin:$PATH
export PATH
@@ -37,5 +39,6 @@ export PATH
. $LDBDIR/tests/init_slapd.sh
. $LDBDIR/tests/start_slapd.sh
-export LDB_SPECIALS=0
+LDB_SPECIALS=0
+export LDB_SPECIALS
. $LDBDIR/tests/test-generic.sh