mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
cdb2730790
ndb/test/run-test/ndb-autotest.sh: ndb autotest 1) merge jonathan changes 2) add --no-report (if dont't want to produce/scp a report) 3) add --no-config (if don't want to create a configuration, i.e there is already one present) 4) add --no-test (for not actually starting test) 5) add checking of conf file |
||
---|---|---|
.. | ||
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-basic-dl145a.txt | ||
conf-daily-basic-ndbmaster.txt | ||
conf-daily-basic-shark.txt | ||
conf-daily-devel-ndbmaster.txt | ||
conf-daily-sql-ndbmaster.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 */ =================================