mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
16 lines
517 B
Tcl
16 lines
517 B
Tcl
|
# See the file LICENSE for redistribution information.
|
||
|
#
|
||
|
# Copyright (c) 1996, 1997, 1998
|
||
|
# Sleepycat Software. All rights reserved.
|
||
|
#
|
||
|
# @(#)test009.tcl 10.2 (Sleepycat) 4/10/98
|
||
|
#
|
||
|
# DB Test 9 {access method}
|
||
|
# Check that we reuse overflow pages. Create database with lots of
|
||
|
# big key/data pairs. Go through and delete and add keys back
|
||
|
# randomly. Then close the DB and make sure that we have everything
|
||
|
# we think we should.
|
||
|
proc test009 { method {nentries 10000} args} {
|
||
|
test008 $method $nentries 9 0 $args
|
||
|
}
|