test091.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: test091.tcl,v 11.4 2000/12/01 04:28:36 ubell Exp $
  7. #
  8. # DB Test 91 {access method}
  9. # Check for CONSUME_WAIT functionality
  10. #
  11. proc test091 { method {nconsumers 4} 
  12.     {nproducers 2} {nitems 1000} {start 0 } {tnum "91"} args} {
  13. if { [is_queue $method ] == 0 } {
  14. puts "Skipping test0$tnum for $method."
  15. return;
  16. }
  17. eval {test070 $method 
  18.     $nconsumers $nproducers $nitems WAIT $start -txn $tnum } $args
  19. eval {test070 $method 
  20.     $nconsumers $nproducers $nitems WAIT $start -cdb $tnum } $args
  21. }