mariadb/ndb/test/run-test
unknown 52a014c7c6 ndb - bug#28804
Handle out of transaction buffer in TC for INDX lookups


ndb/src/kernel/blocks/ERROR_codes.txt:
  Add new error codes for simulating out of transaction buffer memory
ndb/src/kernel/blocks/dbtc/Dbtc.hpp:
  Change signature to handle out of buffer
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp:
  Handle otu of transaction buffers in index operations
    (TCINDXREQ++)
ndb/src/ndbapi/NdbTransaction.cpp:
  Give more info on 4012
ndb/src/ndbapi/ndberror.c:
  Add new error code
ndb/test/ndbapi/testIndex.cpp:
  add tests
ndb/test/run-test/daily-basic-tests.txt:
  add tests
sql/ha_ndbcluster.cc:
  Set correct status
2007-08-13 09:22:42 +02:00
..
16node-tests.txt adopted test scripts 2005-02-10 15:36:21 +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 ndb - Move mysql-test-run & testBackup into "basic suite" 2005-01-25 15:56:20 +01: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 adopted test scripts 2005-02-10 15:36:21 +01:00
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 - bug#28804 2007-08-13 09:22:42 +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 Many files: 2006-12-23 20:17:15 +01:00
make-config.sh ndb - autotest 2005-06-10 10:22:32 +02:00
make-html-reports.sh wl1292 - ndb autotest 2005-02-14 08:28:47 +01:00
make-index.sh Initial revision of NDB Cluster files 2004-04-14 10:53:21 +02:00
Makefile.am my_strtoll10-x86.s: 2006-12-31 01:02:27 +01:00
ndb-autotest.sh ndb - 2006-03-22 12:18:07 +01: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 Many files: 2006-12-23 20:17: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
 */     

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