19 lines
594 B
Tcl
19 lines
594 B
Tcl
# See the file LICENSE for redistribution information.
|
|
#
|
|
# Copyright (c) 1996,2008 Oracle. All rights reserved.
|
|
#
|
|
# $Id: test007.tcl,v 12.6 2008/01/08 20:58:53 bostic Exp $
|
|
#
|
|
# 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
|
|
}
|