blob: ab0226d1340ffe68573c51f337dfbc052d45eb38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 1996-2009 Oracle. All rights reserved.
#
# $Id$
#
# TEST test018
# TEST Offpage duplicate test
# TEST Key_{first,last,before,after} offpage duplicates.
# TEST Run duplicates with small page size so that we test off page
# TEST duplicates.
proc test018 { method {nentries 10000} args} {
puts "Test018: Off page duplicate tests"
set pgindex [lsearch -exact $args "-pagesize"]
if { $pgindex != -1 } {
puts "Test018: Skipping for specific pagesizes"
return
}
eval {test011 $method $nentries 19 "018" -pagesize 512} $args
}
|