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

28
test/lock004.tcl Normal file
View File

@@ -0,0 +1,28 @@
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1996,2008 Oracle. All rights reserved.
#
# $Id: lock004.tcl,v 12.6 2008/01/08 20:58:53 bostic Exp $
#
# TEST lock004
# TEST Test locker ids wraping around.
proc lock004 {} {
source ./include.tcl
global lock_curid
global lock_maxid
set save_curid $lock_curid
set save_maxid $lock_maxid
set lock_curid [expr $lock_maxid - 1]
puts "Lock004: Locker id wraparound test"
puts "\tLock004.a: repeat lock001-lock003 with wraparound lockids"
lock001
lock002
lock003
set lock_curid $save_curid
set lock_maxid $save_maxid
}