README
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. run-test/README
  2. This document describes how atrt works and how to use it.
  3. atrt is a test program driver.
  4. atrt supports fully distributed test and utilizes ndb_cpcd.
  5. =================================
  6. atrt has the following main loop:
  7. /**
  8.   * Psuedo code for atrt
  9.   */
  10.   read config file (default d.txt)
  11.   contact each ndb_cpcd 
  12.   start each ndb_mgmd
  13.   connect to each ndb_mgmd
  14.   for each read(test case)
  15.   do
  16.     if previous test failed (or is first test)
  17.       stop each ndbd
  18.       start each ndbd
  19.       wait for ndbd to get started
  20.      
  21.     start each mysqld
  22.      
  23.     start each test prg
  24.     wait while all is running and max time not elapsed
  25.     stop each mysqld
  26.     stop each test prg
  27.     gather result
  28.   done
  29. /**
  30.  * End of psuedo code
  31.  */     
  32. =================================