mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
16 lines
490 B
Tcl
16 lines
490 B
Tcl
# See the file LICENSE for redistribution information.
|
|
#
|
|
# Copyright (c) 2000-2004
|
|
# Sleepycat Software. All rights reserved.
|
|
#
|
|
# $Id: test090.tcl,v 11.15 2004/01/28 03:36:32 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
|
|
}
|