mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
4e17ed4529
ndb/src/kernel/blocks/dbtc/Dbtc.hpp: BUG#4230 ndb/src/kernel/blocks/dbtc/DbtcMain.cpp: Only send TCROLLBACKREP when recevied TCKEYREQ with exec_flag set ndb/src/ndbapi/NdbApiSignal.cpp: Fix length of TCROLLBACKREQ ndb/src/ndbapi/NdbScanOperation.cpp: Wait for all TRANSID_AI before sending close scan req ndb/test/include/HugoOperations.hpp: Remove hugo impl. of scan interface ndb/test/ndbapi/testScan.cpp: Removed "non relevant" scan tests ndb/test/ndbapi/testTimeout.cpp: Update to new scan api ndb/test/ndbapi/testTransactions.cpp: tmp remove scan (not in autotest yet anyway) from testTransaction ndb/test/src/HugoOperations.cpp: Remove hugo impl. of scan interface |
||
---|---|---|
.. | ||
atrt-analyze-result.sh | ||
atrt-clear-result.sh | ||
atrt-example.tgz | ||
atrt-gather-result.sh | ||
atrt-setup.sh | ||
basic.txt | ||
daily-basic-tests.txt | ||
daily-devel-tests.txt | ||
main.cpp | ||
make-config.sh | ||
make-html-reports.sh | ||
make-index.sh | ||
Makefile.am | ||
Makefile_old | ||
README | ||
README.ATRT | ||
run-test.hpp |
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 */ =================================