mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
49a4c85bdf
Dont be too aggressive in Dbtc::nodeFailCheckTransaction let it timeout by 1, so that it does not assert that it has waited too long old impl. set timeotu value to 0, making timeout = (ctcTimer - 0) which could be quite big. ndb/src/kernel/blocks/ERROR_codes.txt: error codes ndb/src/kernel/blocks/dbdih/DbdihMain.cpp: 2 new error inserts 7030 - delay in GCP_PREPARE until checkLocalNodefailComplete is true 7031 - delay in GCP_PREPARE and die ndb/src/kernel/blocks/dbtc/DbtcMain.cpp: Dont set api con timer to 0, as this might trigger asserion in timeoutfound lab if state == PREPARE_TO_COMMIT ndb/test/ndbapi/testNodeRestart.cpp: testcase ndb/test/run-test/daily-basic-tests.txt: autotest |
||
---|---|---|
.. | ||
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 | ||
conf-daily-sql-ndbmaster.txt | ||
conf-dl145a.txt | ||
conf-ndbmaster.txt | ||
conf-shark.txt | ||
daily-basic-tests.txt | ||
daily-devel-tests.txt | ||
example.conf | ||
main.cpp | ||
make-config.sh | ||
make-html-reports.sh | ||
make-index.sh | ||
Makefile.am | ||
ndb-autotest.sh | ||
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 */ =================================