Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
27dc9462
Commit
27dc9462
authored
Dec 04, 2009
by
Hallvard Furuseth
Browse files
ITS#5810: Skip test for back-null
parent
3840353d
Changes
6
Hide whitespace changes
Inline
Side-by-side
tests/scripts/test046-dds
View file @
27dc9462
...
...
@@ -16,10 +16,11 @@
echo
"running defines.sh"
.
$SRCDIR
/scripts/defines.sh
if
test
$BACKEND
=
"ldif"
;
then
echo
"LDIF backend does not support acls, test skipped"
case
$BACKEND
in
ldif
|
null
)
# LDIF lacks ACL support, NULL cannot hold dynamic entries
echo
"Test does not support
$BACKEND
backend, test skipped"
exit
0
fi
esac
if
test
$DDS
=
ddsno
;
then
echo
"Dynamic Directory Services overlay not available, test skipped"
...
...
tests/scripts/test049-sync-config
View file @
27dc9462
...
...
@@ -21,6 +21,11 @@ if test $SYNCPROV = syncprovno; then
exit
0
fi
if
test
$BACKEND
=
null
;
then
echo
"
$BACKEND
backend does not support cn=config, test skipped"
exit
0
fi
PRODIR
=
$TESTDIR
/pro
CONDIR
=
$TESTDIR
/con1
DBPRO
=
$PRODIR
/db
...
...
tests/scripts/test050-syncrepl-multimaster
View file @
27dc9462
...
...
@@ -21,6 +21,11 @@ if test $SYNCPROV = syncprovno; then
exit
0
fi
if
test
$BACKEND
=
null
;
then
echo
"
$BACKEND
backend does not support cn=config, test skipped"
exit
0
fi
MMR
=
${
MMR
-4
}
if
[
$MMR
-gt
9
]
;
then
...
...
tests/scripts/test052-memberof
View file @
27dc9462
...
...
@@ -21,6 +21,11 @@ if test $MEMBEROF = memberofno; then
exit
0
fi
if
test
$BACKEND
=
null
;
then
echo
"
$BACKEND
backend does not support cn=config, test skipped"
exit
0
fi
mkdir
-p
$TESTDIR
$DBDIR1
$TESTDIR
/confdir
$SLAPPASSWD
-g
-n
>
$CONFIGPWF
...
...
tests/scripts/test053-syncprov-glue
View file @
27dc9462
...
...
@@ -27,6 +27,11 @@ if test $SYNCPROV = syncprovno; then
exit
0
fi
if
test
$BACKEND
=
null
;
then
echo
"
$BACKEND
backend does not support cn=config, test skipped"
exit
0
fi
PRODDIR
=
$TESTDIR
/prod
PRO2DIR
=
$TESTDIR
/pro2
CONSDIR
=
$TESTDIR
/cons
...
...
tests/scripts/test057-memberof-refint
View file @
27dc9462
...
...
@@ -27,10 +27,10 @@ if test $REFINT = refintno; then
exit
0
fi
if
test
"
$BACKEND
"
=
"bdb"
;
then
echo
"Test does not support
$BACKEND
"
case
$BACKEND
in
bdb
|
null
)
echo
"Test does not support
$BACKEND
, test skipped
"
exit
0
fi
esac
mkdir
-p
$TESTDIR
$DBDIR1
$TESTDIR
/confdir
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment