Import BSDDB 4.7.25 (as of svn r89086)

This commit is contained in:
Zachary Ware
2017-09-04 13:40:25 -05:00
parent 4b29e0458f
commit 8f590873d0
4781 changed files with 2241032 additions and 6 deletions

35
test/dead007.tcl Normal file
View File

@@ -0,0 +1,35 @@
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1996,2008 Oracle. All rights reserved.
#
# $Id: dead007.tcl,v 12.6 2008/01/08 20:58:53 bostic Exp $
#
# TEST dead007
# TEST Tests for locker and txn id wraparound.
proc dead007 { {tnum "007"} } {
source ./include.tcl
global lock_curid
global lock_maxid
set save_curid $lock_curid
set save_maxid $lock_maxid
puts "Dead$tnum.a -- wrap around"
set lock_curid [expr $lock_maxid - 2]
dead001 "2 10" "ring clump" "0" $tnum
## Oldest/youngest breaks when the id wraps
# dead003 "4 10"
dead004 $tnum
puts "Dead$tnum.b -- extend space"
set lock_maxid [expr $lock_maxid - 3]
set lock_curid [expr $lock_maxid - 1]
dead001 "4 10" "ring clump" "0" $tnum
## Oldest/youngest breaks when the id wraps
# dead003 "10"
dead004 $tnum
set lock_curid $save_curid
set lock_maxid $save_maxid
# Return the empty string so we don't return lock_maxid.
return ""
}