mariadb/ndb/test/run-test
unknown 1f8b95514e merge
ndb/src/kernel/blocks/backup/Backup.hpp:
  Auto merged
ndb/src/kernel/blocks/backup/BackupInit.cpp:
  Auto merged
ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp:
  Auto merged
ndb/src/mgmapi/mgmapi.cpp:
  Auto merged
ndb/src/mgmsrv/MgmtSrvr.cpp:
  Auto merged
ndb/src/mgmsrv/MgmtSrvr.hpp:
  Auto merged
ndb/src/ndbapi/ndberror.c:
  Auto merged
ndb/test/ndbapi/testBackup.cpp:
  Auto merged
ndb/test/run-test/daily-basic-tests.txt:
  Auto merged
ndb/test/src/NdbBackup.cpp:
  Auto merged
2005-04-22 09:30:23 +02:00
..
16node-tests.txt adopted test scripts 2005-02-10 15:36:21 +01:00
atrt-analyze-result.sh
atrt-clear-result.sh
atrt-example.tgz
atrt-gather-result.sh
atrt-mysql-test-run ndb - Move mysql-test-run & testBackup into "basic suite" 2005-01-25 15:56:20 +01:00
atrt-setup.sh
atrt-testBackup
basic.txt adopted test scripts 2005-02-10 15:36:21 +01:00
daily-basic-tests.txt merge 2005-04-22 09:30:23 +02:00
daily-devel-tests.txt added test compare function for testing event 2005-03-07 18:47:47 +01:00
example.conf wl1292 - ndb autotest scripts 2005-02-22 10:18:38 +01:00
main.cpp ndb - add more tests to autotest 2005-02-10 18:15:15 +01:00
make-config.sh
make-html-reports.sh wl1292 - ndb autotest 2005-02-14 08:28:47 +01:00
make-index.sh
Makefile.am Merge mskold@bk-internal.mysql.com:/home/bk/mysql-5.0 2005-02-16 11:17:14 +01:00
ndb-autotest.sh wl1292 - ndb autotest - fix html reporting bug 2005-02-22 12:15:27 +01:00
README
README.ATRT
run-test.hpp ndb - add more tests to autotest 2005-02-10 18:15:15 +01: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
 */     

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