test084.tcl
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: test084.tcl,v 11.6 2000/12/11 17:24:55 sue Exp $
  7. #
  8. # Test 84.
  9. # Basic sanity test (test001) with large (64K) pages.
  10. #
  11. proc test084 { method {nentries 10000} {tnum 84} {pagesize 65536} args} {
  12. source ./include.tcl
  13. set eindex [lsearch -exact $args "-env"]
  14. #
  15. # If we are using an env, then testfile should just be the db name.
  16. # Otherwise it is the test directory and the name.
  17. if { $eindex == -1 } {
  18. set testfile $testdir/test0$tnum-empty.db
  19. set env NULL
  20. } else {
  21. set testfile test0$tnum-empty.db
  22. incr eindex
  23. set env [lindex $args $eindex]
  24. }
  25. set pgindex [lsearch -exact $args "-pagesize"]
  26. if { $pgindex != -1 } {
  27. puts "Test084: skipping for specific pagesizes"
  28. return
  29. }
  30. cleanup $testdir $env
  31. set args "-pagesize $pagesize $args"
  32. eval {test001 $method $nentries 0 $tnum} $args
  33. set omethod [convert_method $method]
  34. set args [convert_args $method $args]
  35. # For good measure, create a second database that's empty
  36. # with the large page size.  (There was a verifier bug that
  37. # choked on empty 64K pages. [#2408])
  38. set db [eval {berkdb_open -create -mode 0644} $args $omethod $testfile]
  39. error_check_good empty_db [is_valid_db $db] TRUE
  40. error_check_good empty_db_close [$db close] 0
  41. }