mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
3e3842fa2e
Fix various abort cases (mainly MM but also 1 DD) that has been found running dbt2 storage/ndb/src/kernel/blocks/dbtup/DbtupAbort.cpp: Fix abort case storage/ndb/src/kernel/blocks/dbtup/DbtupDiskAlloc.cpp: Set page dirty even if in cache storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp: Fix abort case storage/ndb/test/ndbapi/testBasic.cpp: Add new testcases for various abort cases storage/ndb/test/run-test/daily-basic-tests.txt: Add autotest of various abort cases |
||
---|---|---|
.. | ||
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 | ||
ATRT_SETUP_README.txt | ||
ATRT_USAGE_README.txt | ||
basic.txt | ||
conf-daily-basic-ndb08.txt | ||
conf-daily-devel-ndb08.txt | ||
conf-daily-devel-ndbmaster.txt | ||
conf-daily-sql-ndb08.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: /** * Pseudo 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 pseudo code */ =================================