mariadb/ndb/test/run-test
2004-09-16 22:06:17 +02: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 wl1292 - 2004-09-09 08:40:20 +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 testBank 2004-09-15 17:09:25 +00:00
daily-devel-tests.txt removed extra newline 2004-09-16 22:06:17 +02:00
main.cpp ndb_init() to all ndb programs 2004-09-15 11:49:18 +02: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 wl1292 - 2004-09-09 08:40:20 +02:00
Makefile_old Intermediary commit: Removed some old Makefiles and introduces Makefile.am 2004-05-25 11:09:11 +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
 */     

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