2001-03-04 19:42:05 -05:00
|
|
|
# See the file LICENSE for redistribution information.
|
|
|
|
#
|
2005-07-20 15:48:22 -07:00
|
|
|
# Copyright (c) 2000-2004
|
2001-03-04 19:42:05 -05:00
|
|
|
# Sleepycat Software. All rights reserved.
|
|
|
|
#
|
2005-07-20 15:48:22 -07:00
|
|
|
# $Id: test090.tcl,v 11.15 2004/01/28 03:36:32 bostic Exp $
|
2001-03-04 19:42:05 -05:00
|
|
|
#
|
2002-10-30 15:57:05 +04:00
|
|
|
# TEST test090
|
|
|
|
# TEST Test for functionality near the end of the queue using test001.
|
2005-07-20 15:48:22 -07:00
|
|
|
proc test090 { method {nentries 10000} {tnum "090"} args} {
|
2001-03-04 19:42:05 -05:00
|
|
|
if { [is_queueext $method ] == 0 } {
|
2005-07-20 15:48:22 -07:00
|
|
|
puts "Skipping test$tnum for $method."
|
2001-03-04 19:42:05 -05:00
|
|
|
return;
|
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
eval {test001 $method $nentries 4294967000 0 $tnum} $args
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|