mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
6d9323ade0
An implementation of the TAP framework for writing unit tests. Makefile.am: Adding directories mytap and unittest configure.in: Building Makefiles for mytap and unittest directories. mytap/Doxyfile: New BitKeeper file ``mytap/Doxyfile'' mytap/Makefile.am: New BitKeeper file ``mytap/Makefile.am'' mytap/t/basic.t.c: New BitKeeper file ``mytap/t/basic.t.c'' mytap/tap.c: New BitKeeper file ``mytap/tap.c'' mytap/tap.h: New BitKeeper file ``mytap/tap.h'' unittest/Makefile.am: New BitKeeper file ``unittest/Makefile.am'' unittest/examples/Makefile.am: New BitKeeper file ``unittest/examples/Makefile.am'' unittest/examples/no_plan.t.c: New BitKeeper file ``unittest/examples/no_plan.t.c'' unittest/examples/simple.t.c: New BitKeeper file ``unittest/examples/simple.t.c'' unittest/examples/skip.t.c: New BitKeeper file ``unittest/examples/skip.t.c'' unittest/examples/skip_all.t.c: New BitKeeper file ``unittest/examples/skip_all.t.c'' unittest/examples/todo.t.c: New BitKeeper file ``unittest/examples/todo.t.c'' unittest/mysys/Makefile.am: New BitKeeper file ``unittest/mysys/Makefile.am'' unittest/mysys/bitmap.t.c: New BitKeeper file ``unittest/mysys/bitmap.t.c'' unittest/unit.pl: New BitKeeper file ``unittest/unit.pl''
19 lines
490 B
C
19 lines
490 B
C
|
|
#include <stdlib.h>
|
|
#include <tap.h>
|
|
|
|
/*
|
|
Sometimes, the number of tests is not known beforehand. In those
|
|
cases, the plan can be omitted and will instead be written at the
|
|
end of the test (inside exit_status()).
|
|
|
|
Use this sparingly, it is a last resort: planning how many tests you
|
|
are going to run will help you catch that offending case when some
|
|
tests are skipped for an unknown reason.
|
|
*/
|
|
int main() {
|
|
ok(1, NULL);
|
|
ok(1, NULL);
|
|
ok(1, NULL);
|
|
return exit_status();
|
|
}
|