summaryrefslogtreecommitdiff
path: root/unittest/README.txt
diff options
context:
space:
mode:
authorunknown <mats@mysql.com>2006-04-11 20:29:34 +0200
committerunknown <mats@mysql.com>2006-04-11 20:29:34 +0200
commita14de3b2dbed4f3ec84d73f30266c0d9294f30c7 (patch)
tree000dd44bbd07c4a208131be0858eb8b4fb714538 /unittest/README.txt
parent4f99f11e9c798225fd5906c23dc26da01ae4f20e (diff)
downloadmariadb-git-a14de3b2dbed4f3ec84d73f30266c0d9294f30c7.tar.gz
WL#3206 (Add unit tests):
More changes according to review comments. unittest/README.txt: Changes to manifest. unittest/mysys/bitmap.t.c: Removed unused functions and variables. Marked unused parameters as unused. No need to test every size up to 4096 bits, testing to 1024, but I think this is too much as well. unittest/unit.pl: Added test for version-specific function.
Diffstat (limited to 'unittest/README.txt')
-rw-r--r--unittest/README.txt25
1 files changed, 14 insertions, 11 deletions
diff --git a/unittest/README.txt b/unittest/README.txt
index 35e930a7951..fd9641665c7 100644
--- a/unittest/README.txt
+++ b/unittest/README.txt
@@ -1,16 +1,21 @@
+Unit tests directory structure
+------------------------------
-Unit test structure
--------------------
+This is the current structure of the unit tests. More directories
+will be added over time.
-This is the current structure of the unit tests. All directories does
-not currently exist, and more directories will be added over time.
+mytap Source for the MyTAP library
+mysys Tests for mysys components
+ bitmap.t.c Unit test for MY_BITMAP
+ base64.t.c Unit test for base64 encoding functions
+examples Example unit tests
+ simple.t.c Example of a standard TAP unit test
+ skip.t.c Example where some test points are skipped
+ skip_all.t.c Example of a test where the entire test is skipped
+ todo.t.c Example where test contain test points that are TODO
+ no_plan.t.c Example of a test with no plan (avoid this)
-+ mysys Tests for mysys components
-+ examples Example unit tests
-+ sql Unit tests for server code
- + rpl Unit tests for replication code
- + log Unit tests for logging
Executing unit tests
--------------------
@@ -29,5 +34,3 @@ directory and add the following to the Makefile.am in that directory
noinst_PROGRAMS = ... foo.t
foo_t_c_SOURCES = foo.t.c
-
-