mariadb/storage/ndb/test/run-test
kent@mysql.com/g4-2.local b329f2c3ef Many files:
Deleted config/ac-macros/ha_berkeley.m4
  Removed more referenses to bdb
2006-08-21 15:34:29 +02:00
..
16node-tests.txt Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
atrt-analyze-result.sh Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
atrt-clear-result.sh Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
atrt-example.tgz Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
atrt-gather-result.sh Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
atrt-mysql-test-run Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
atrt-setup.sh Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
atrt-testBackup Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
ATRT_SETUP_README.txt ATRT documentation 2006-03-27 14:59:19 +04:00
ATRT_USAGE_README.txt ATRT documentation 2006-03-27 14:59:19 +04:00
basic.txt Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
conf-daily-basic-ndb08.txt merge error 2005-09-15 12:53:59 +02:00
conf-daily-devel-ndb08.txt merge error 2005-09-15 12:53:59 +02:00
conf-daily-devel-ndbmaster.txt Merge perch.ndb.mysql.com:/home/jonas/src/50-work 2006-03-24 07:43:55 +01:00
conf-daily-sql-ndb08.txt merge error 2005-09-15 12:53:59 +02:00
conf-daily-sql-ndbmaster.txt conf-daily-sql-ndbmaster.txt: 2005-05-13 10:55:12 +02:00
conf-dl145a.txt Merge perch.ndb.mysql.com:/home/jonas/src/50-work 2006-03-24 07:43:55 +01:00
conf-ndbmaster.txt Merge perch.ndb.mysql.com:/home/jonas/src/50-work 2006-03-24 07:43:55 +01:00
conf-shark.txt Merge perch.ndb.mysql.com:/home/jonas/src/50-work 2006-03-24 07:43:55 +01:00
daily-basic-tests.txt Merge willster.(none):/home/stewart/Documents/MySQL/5.0/main 2006-07-24 02:32:49 +10:00
daily-devel-tests.txt ndb - add test_event_merge to daily-devel-tests.txt 2006-06-21 17:17:12 +02:00
example.conf Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
main.cpp Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.0 2005-05-10 00:45:27 +02:00
make-config.sh fix error handling if thread creation fails in ndbd 2005-11-22 18:05:10 +01:00
make-html-reports.sh Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
make-index.sh Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
Makefile.am ndb autotest 2006-03-24 12:36:39 +01:00
ndb-autotest.sh Many files: 2006-08-21 15:34:29 +02:00
README Patch for push of wl1354 Partitioning 2005-07-18 13:31:02 +02:00
README.ATRT Changes to create storage directory for storage engines. 2005-04-26 18:19:54 -07:00
run-test.hpp Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.0 2005-05-10 00:45:27 +02:00

run-test/README

This document describes how atrt works and how to use it.

atrt is a test program driver.
atrt supports fully distributed test and utilizes ndb_cpcd.

=================================
atrt has the following main loop:

/**
  * Pseudo code for atrt
  */
  read config file (default d.txt)
  contact each ndb_cpcd 
  start each ndb_mgmd
  connect to each ndb_mgmd
  for each read(test case)
  do
    if previous test failed (or is first test)
      stop each ndbd
      start each ndbd
      wait for ndbd to get started
     
    start each mysqld
     
    start each test prg

    wait while all is running and max time not elapsed

    stop each mysqld

    stop each test prg

    gather result

  done
/**
 * End of pseudo code
 */     

=================================