mariadb/ndb/test/run-test
unknown 61c5b80e9f ndb -
add testcase for bug#24717
 + fix typo


ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp:
  Add new error insert 9002
    which is 9000, but will auto enable when started
ndb/src/kernel/blocks/cmvmi/Cmvmi.hpp:
  Add new error insert 9002
    which is 9000, but will auto enable when started
ndb/src/kernel/blocks/dbdih/DbdihInit.cpp:
  Fix typo
ndb/test/ndbapi/testNodeRestart.cpp:
  add testcase for bug#24717
ndb/test/run-test/daily-basic-tests.txt:
  add testcase for bug#24717
2006-12-01 10:25:11 +01:00
..
16node-tests.txt
atrt-analyze-result.sh
atrt-clear-result.sh
atrt-example.tgz
atrt-gather-result.sh
atrt-mysql-test-run
atrt-setup.sh
atrt-testBackup
basic.txt
conf-daily-devel-ndbmaster.txt ndb - 2006-03-22 12:11:51 +01:00
conf-daily-sql-ndbmaster.txt ndb - autotest 2005-05-07 18:20:29 +02:00
conf-dl145a.txt ndb - 2006-03-22 12:11:51 +01:00
conf-ndbmaster.txt ndb - 2006-03-22 12:11:51 +01:00
conf-shark.txt ndb - 2006-03-22 12:11:51 +01:00
daily-basic-tests.txt ndb - 2006-12-01 10:25:11 +01: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 - autotest 2005-05-06 17:26:22 +02:00
make-config.sh ndb - autotest 2005-06-10 10:22:32 +02:00
make-html-reports.sh
make-index.sh
Makefile.am Merge perch.ndb.mysql.com:/home/jonas/src/41-work 2006-03-22 15:24:32 +01:00
ndb-autotest.sh ndb - 2006-03-22 12:18:07 +01:00
README
README.ATRT
run-test.hpp ndb - add support for mysql servers in autotest 2005-05-06 14:44:43 +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
 */     

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