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

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1996, 1997, 1998, 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: dead001.tcl,v 11.17 2000/11/05 14:23:55 dda Exp $
  7. #
  8. # Deadlock Test 1.
  9. # We create various deadlock scenarios for different numbers of lockers
  10. # and see if we can get the world cleaned up suitably.
  11. proc dead001 { { procs "2 4 10" } {tests "ring clump" } } {
  12. source ./include.tcl
  13. puts "Dead001: Deadlock detector tests"
  14. env_cleanup $testdir
  15. # Create the environment.
  16. puts "tDead001.a: creating environment"
  17. set env [berkdb env -create -mode 0644 -lock -home $testdir]
  18. error_check_good lock_env:open [is_valid_env $env] TRUE
  19. error_check_good lock_env:close [$env close] 0
  20. set dpid [exec $util_path/db_deadlock -vw -h $testdir 
  21.     >& $testdir/dd.out &]
  22. foreach t $tests {
  23. set pidlist ""
  24. foreach n $procs {
  25. sentinel_init 
  26. # Fire off the tests
  27. puts "tDead001: $n procs of test $t"
  28. for { set i 0 } { $i < $n } { incr i } {
  29. puts "$tclsh_path $test_path/wrap.tcl 
  30.     $testdir/dead001.log.$i 
  31.     ddscript.tcl $testdir $t $i $i $n"
  32. set p [exec $tclsh_path 
  33. $test_path/wrap.tcl 
  34. ddscript.tcl $testdir/dead001.log.$i 
  35. $testdir $t $i $i $n &]
  36. lappend pidlist $p
  37. }
  38. watch_procs 5
  39. # Now check output
  40. set dead 0
  41. set clean 0
  42. set other 0
  43. for { set i 0 } { $i < $n } { incr i } {
  44. set did [open $testdir/dead001.log.$i]
  45. while { [gets $did val] != -1 } {
  46. switch $val {
  47. DEADLOCK { incr dead }
  48. 1 { incr clean }
  49. default { incr other }
  50. }
  51. }
  52. close $did
  53. }
  54. puts "dead check..."
  55. dead_check $t $n $dead $clean $other
  56. }
  57. }
  58. exec $KILL $dpid
  59. # Windows needs files closed before deleting files, so pause a little
  60. tclsleep 2
  61. fileremove -f $testdir/dd.out
  62. # Remove log files
  63. for { set i 0 } { $i < $n } { incr i } {
  64. fileremove -f $testdir/dead001.log.$i
  65. }
  66. }