blob: 19175b567b36488ad4601d3d62178a87ab93f9e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2000,2007 Oracle. All rights reserved.
#
# $Id: test090.tcl,v 12.5 2007/05/17 15:15:56 bostic Exp $
#
# 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
}
|