blob: 2dfb46b0f0308862454e0ec7b13b340eb1e0e682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1996-2009 Oracle. All rights reserved.
#
# $Id$
#
# TEST test007
# TEST Small keys/medium data
# TEST Put/get per key
# TEST Close, reopen
# TEST Keyed delete
# TEST
# TEST Check that delete operations work. Create a database; close
# TEST database and reopen it. Then issues delete by key for each
# TEST entry. (Test006 plus reopen)
proc test007 { method {nentries 10000} {tnum "007"} {ndups 5} args} {
eval {test006 $method $nentries 1 $tnum $ndups} $args
}
|