diff options
author | unknown <jani@a88-113-38-195.elisa-laajakaista.fi> | 2008-01-04 02:16:24 +0200 |
---|---|---|
committer | unknown <jani@a88-113-38-195.elisa-laajakaista.fi> | 2008-01-04 02:16:24 +0200 |
commit | cab8a363eeebe6d8c2c6c1c17a15cee121c631d6 (patch) | |
tree | 84852b40a6446aac854d678e8190e77111d03560 /unittest/Makefile.am | |
parent | c719e1fd335f20bc068e3174cea097101ab4cf2a (diff) | |
download | mariadb-git-cab8a363eeebe6d8c2c6c1c17a15cee121c631d6.tar.gz |
Bug fixes and new features to ma_test_all-t
scripts/mysql_fix_privilege_tables.sh:
Fix a problem with events table not getting updated correctly.
This happens when you run scripts/mysql_fix_privilege_tables and
you have an old version of mysql_fix_privilege_tables.sql in
the actual installation directory. This patch makes it look for
the file inside the source dir first.
storage/maria/unittest/ma_test_all-t:
Added several new options for ma_test_all-t
--verbose is handy, if you want to run the tests separately on the
screen.
Added functions for counting tests and a possibility to
separate a group of tests inside an array of test.
unittest/Makefile.am:
Fixed a problem with make test not executing
ma_test_all-t properly from the top source dir.
Diffstat (limited to 'unittest/Makefile.am')
-rw-r--r-- | unittest/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittest/Makefile.am b/unittest/Makefile.am index 8684fd3fc7d..e9eb6737ce5 100644 --- a/unittest/Makefile.am +++ b/unittest/Makefile.am @@ -21,10 +21,10 @@ CLEANFILES = unit unittests = mytap mysys @mysql_se_unittest_dirs@ @mysql_pg_unittest_dirs@ test: - perl unit.pl run $(unittests) + maria_path=../storage/maria perl unit.pl run $(unittests) test-verbose: - HARNESS_VERBOSE=1 perl unit.pl run $(unittests) + HARNESS_VERBOSE=1 maria_path=../storage/maria perl unit.pl run $(unittests) # Don't update the files from bitkeeper %::SCCS/s.% |