dead002.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: dead002.tcl,v 11.15 2000/08/25 14:21:50 sue Exp $
  7. #
  8. # Deadlock Test 2.
  9. # Identical to Test 1 except that instead of running a standalone deadlock
  10. # detector, we create the region with "detect on every wait"
  11. proc dead002 { { procs "2 4 10" } {tests "ring clump" } } {
  12. source ./include.tcl
  13. puts "Dead002: Deadlock detector tests"
  14. env_cleanup $testdir
  15. # Create the environment.
  16. puts "tDead002.a: creating environment"
  17. set env [berkdb env 
  18.     -create -mode 0644 -home $testdir -lock -lock_detect default]
  19. error_check_good lock_env:open [is_valid_env $env] TRUE
  20. error_check_good lock_env:close [$env close] 0
  21. foreach t $tests {
  22. set pidlist ""
  23. foreach n $procs {
  24. sentinel_init
  25. # Fire off the tests
  26. puts "tDead002: $n procs of test $t"
  27. for { set i 0 } { $i < $n } { incr i } {
  28. puts "$tclsh_path $test_path/wrap.tcl 
  29.     $testdir/dead002.log.$i 
  30.     ddscript.tcl $testdir $t $i $i $n"
  31. set p [exec $tclsh_path 
  32. $test_path/wrap.tcl 
  33. ddscript.tcl $testdir/dead002.log.$i 
  34. $testdir $t $i $i $n &]
  35. lappend pidlist $p
  36. }
  37. watch_procs 5
  38. # Now check output
  39. set dead 0
  40. set clean 0
  41. set other 0
  42. for { set i 0 } { $i < $n } { incr i } {
  43. set did [open $testdir/dead002.log.$i]
  44. while { [gets $did val] != -1 } {
  45. switch $val {
  46. DEADLOCK { incr dead }
  47. 1 { incr clean }
  48. default { incr other }
  49. }
  50. }
  51. close $did
  52. }
  53. dead_check $t $n $dead $clean $other
  54. }
  55. }
  56. fileremove -f $testdir/dd.out
  57. # Remove log files
  58. for { set i 0 } { $i < $n } { incr i } {
  59. fileremove -f $testdir/dead002.log.$i
  60. }
  61. }