mariadb/ndb/test/run-test
2004-12-10 16:15:36 +01:00
..
atrt-analyze-result.sh Initial revision of NDB Cluster files 2004-04-14 10:53:21 +02:00
atrt-clear-result.sh Initial revision of NDB Cluster files 2004-04-14 10:53:21 +02:00
atrt-example.tgz wl1858 2004-06-14 12:21:13 +02:00
atrt-gather-result.sh Initial revision of NDB Cluster files 2004-04-14 10:53:21 +02:00
atrt-mysql-test-run testcase for bug#5736 2004-10-06 11:00:09 +02:00
atrt-setup.sh Initial revision of NDB Cluster files 2004-04-14 10:53:21 +02:00
atrt-testBackup wl1292 - 2004-09-09 08:40:20 +02:00
basic.txt wl1858 2004-06-14 12:21:13 +02:00
daily-basic-tests.txt ndb - bitfields - more tests, now passes all api tests!! 2004-12-10 16:15:36 +01:00
daily-devel-tests.txt Smarter test 2004-10-13 15:30:43 +02:00
main.cpp adopted testprograms to changes in mgmapi 2004-11-18 20:35:19 +00:00
make-config.sh Initial revision of NDB Cluster files 2004-04-14 10:53:21 +02:00
make-html-reports.sh wl1292 - fix report 2004-06-15 23:18:56 +02:00
make-index.sh Initial revision of NDB Cluster files 2004-04-14 10:53:21 +02:00
Makefile.am removed editline and replaced with mysql readline 2004-11-08 10:21:39 +00:00
README wl1858 2004-06-14 12:21:13 +02:00
README.ATRT Initial revision of NDB Cluster files 2004-04-14 10:53:21 +02:00
run-test.hpp introduced ndb_global.h/my_global.h to replace sytem lib includes e.g. stdio, stdlib 2004-05-07 08:39:42 +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:

/**
  * Psuedo 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 psuedo code
 */     

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