mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 09:06:25 +00:00
15 lines
446 B
Tcl
15 lines
446 B
Tcl
# See the file LICENSE for redistribution information.
|
|
#
|
|
# Copyright (c) 2000, 2012 Oracle and/or its affiliates. All rights reserved.
|
|
#
|
|
# $Id$
|
|
#
|
|
# TEST test090
|
|
# TEST Test for functionality near the end of the queue using test001.
|
|
proc test090 { method {nentries 10000} {tnum "090"} args} {
|
|
if { [is_queueext $method ] == 0 } {
|
|
puts "Skipping test$tnum for $method."
|
|
return;
|
|
}
|
|
eval {test001 $method $nentries 4294967000 0 $tnum} $args
|
|
}
|