diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-09-14 10:35:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:40 -0500 |
commit | e9c465621eee678feae16f6196031dff8d76fc3d (patch) | |
tree | 4ff3bfb43f68930530efd8bae7620348e1f38698 /source4/lib/ldb/tests/test-generic.sh | |
parent | cbb1975c8caa4277b0d1cad7e8427dc241cf2958 (diff) | |
download | samba-e9c465621eee678feae16f6196031dff8d76fc3d.tar.gz samba-e9c465621eee678feae16f6196031dff8d76fc3d.tar.bz2 samba-e9c465621eee678feae16f6196031dff8d76fc3d.zip |
r18515: Remove calls to "time" for now as some sh implementations don't have it,
causing this test to fail.
(This used to be commit fc3f41a4ab38fd32386c5bdb1979cc26892afcf8)
Diffstat (limited to 'source4/lib/ldb/tests/test-generic.sh')
-rwxr-xr-x | source4/lib/ldb/tests/test-generic.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/tests/test-generic.sh b/source4/lib/ldb/tests/test-generic.sh index 1f81723d5e..bebb5f165c 100755 --- a/source4/lib/ldb/tests/test-generic.sh +++ b/source4/lib/ldb/tests/test-generic.sh @@ -25,7 +25,7 @@ echo "Showing renamed record" $VALGRIND ldbsearch '(uid=uham)' || exit 1 echo "Starting ldbtest" -time $VALGRIND ldbtest --num-records 100 --num-searches 10 || exit 1 +$VALGRIND ldbtest --num-records 100 --num-searches 10 || exit 1 if [ $LDB_SPECIALS = 1 ]; then echo "Adding index" @@ -62,7 +62,7 @@ $VALGRIND ldbsearch '(cn=test*multi*test*multi)' || exit 1 $VALGRIND ldbsearch '(cn=test*multi*test*multi*multi_*)' || exit 1 echo "Starting ldbtest indexed" -time $VALGRIND ldbtest --num-records 100 --num-searches 500 || exit 1 +$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` |