test080.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: test080.tcl,v 11.7 2000/10/19 23:15:22 ubell Exp $
  7. #
  8. # DB Test 80 {access method}
  9. # Test of dbremove
  10. proc test080 { method {tnum 80} args } {
  11. source ./include.tcl
  12. set args [convert_args $method $args]
  13. set omethod [convert_method $method]
  14. puts "Test0$tnum: Test of DB->remove()"
  15. set eindex [lsearch -exact $args "-env"]
  16. if { $eindex != -1 } {
  17. puts "tTest0$tnum: Skipping in the presence of an environment"
  18. return
  19. }
  20. cleanup $testdir NULL
  21. set testfile $testdir/test0$tnum.db
  22. set db [eval {berkdb_open -create -truncate -mode 0644} $omethod 
  23.     $args {$testfile}]
  24. error_check_good db_open [is_valid_db $db] TRUE
  25. for {set i 1} { $i < 1000 } {incr i} {
  26. $db put $i $i
  27. }
  28. error_check_good db_close [$db close] 0
  29. error_check_good file_exists_before [file exists $testfile] 1
  30. error_check_good db_remove [berkdb dbremove $testfile] 0
  31. error_check_good file_exists_after [file exists $testfile] 0
  32. puts "tTest0$tnum succeeded."
  33. }