Relevant Source code directories and Notes
-
mysql-test- test suite for the MySQL daemon. Uses Perl
script to run tests using a pre-defined framework and test
language
- To run the tests in this test-suite, go to mysql-test and run the 'mysql-test-run.pl' script
- 'make test' also does the above after running the tests
in 'unittest'
-
tests- C & perl scripts to perform various client -like
tasks- uses libmysql (C lib) Perl API respectively (mainly
tests features which are not possible via above)
- No where in the top-level Makefile is the 'tests' directory mentioned
- what is the 'mysql_client_test.c' doing?
-
mysql_client_test- shell script wrapper for
.libs/mysql_client_test
- the …