mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
r8490: make the ldb tests more portable
This commit is contained in:
parent
ccf20b2b13
commit
6b20bcbeeb
@ -38,7 +38,7 @@ EOF
|
||||
checkcount() {
|
||||
count=$1
|
||||
expression="$2"
|
||||
n=`bin/ldbsearch "$expression" | grep ^dn | wc -l`
|
||||
n=`bin/ldbsearch "$expression" | grep '^dn' | wc -l`
|
||||
if [ $n != $count ]; then
|
||||
echo "Got $n but expected $count for $expression"
|
||||
bin/ldbsearch "$expression"
|
||||
|
@ -58,7 +58,7 @@ echo "Starting ldbtest indexed"
|
||||
time $VALGRIND ldbtest --num-records 100 --num-searches 500 || exit 1
|
||||
|
||||
echo "Testing one level search"
|
||||
count=`$VALGRIND ldbsearch -b 'ou=Groups,o=University of Michigan,c=TEST' -s one 'objectclass=*' none |grep ^dn | wc -l`
|
||||
count=`$VALGRIND ldbsearch -b 'ou=Groups,o=University of Michigan,c=TEST' -s one 'objectclass=*' none |grep '^dn' | wc -l`
|
||||
if [ $count != 3 ]; then
|
||||
echo returned $count records - expected 3
|
||||
exit 1
|
||||
|
@ -7,7 +7,7 @@ mv $LDB_URL $LDB_URL.2
|
||||
checkcount() {
|
||||
count=$1
|
||||
expression="$2"
|
||||
n=`bin/ldbsearch "$expression" | grep ^dn | wc -l`
|
||||
n=`bin/ldbsearch "$expression" | grep '^dn' | wc -l`
|
||||
if [ $n != $count ]; then
|
||||
echo "Got $n but expected $count for $expression"
|
||||
$VALGRIND bin/ldbsearch "$expression"
|
||||
|
Loading…
Reference in New Issue
Block a user