summaryrefslogtreecommitdiff
path: root/unittest
diff options
context:
space:
mode:
authorguilhem@gbichot3.local <>2006-09-15 15:15:24 +0200
committerguilhem@gbichot3.local <>2006-09-15 15:15:24 +0200
commit09c5a834162d0150b1680052e2cd037fdbc53e00 (patch)
tree4a806d99e2eb9e6c98fe6213c4fa5ea9d6402a44 /unittest
parent996b8d92c7b54c04bef34fa358035685529d5d8b (diff)
downloadmariadb-git-09c5a834162d0150b1680052e2cd037fdbc53e00.tar.gz
WL#3504 "plugin actions for engines' and plugins' unit tests"
for push in 5.1 (I will inform Trudy). Storage engines and plugins can now have unit tests to test their components; such test must be an executable C/C++ program which name ends with '-t' and which is obeys the mytap protocol, it must be stored in the storage engine's or plugin's source directory (storage/<engine> or plugin/<plugin>) or any subdirectories of this. The top-level Makefile target "test-unit" will run all unit tests: it will scan the engines' and plugins' directories, recursively, and execute all executable files which name ends with '-t'."
Diffstat (limited to 'unittest')
-rw-r--r--unittest/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/Makefile.am b/unittest/Makefile.am
index f2f7fc0bf7d..7f1dd525d3b 100644
--- a/unittest/Makefile.am
+++ b/unittest/Makefile.am
@@ -3,7 +3,7 @@ SUBDIRS = mytap . mysys examples
EXTRA_DIST = unit.pl
CLEANFILES = unit
-unittests = mytap mysys
+unittests = mytap mysys @mysql_se_unittest_dirs@ @mysql_pg_unittest_dirs@
test:
perl unit.pl run $(unittests)