From 3bbda921b7180340ccc50c1a8a2bf01631508f36 Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Thu, 31 Mar 2011 12:11:19 +0100 Subject: Created a little Test::More-like library for TAP testing --- t/taplib.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 t/taplib.c (limited to 't/taplib.c') diff --git a/t/taplib.c b/t/taplib.c new file mode 100644 index 0000000..0e8735a --- /dev/null +++ b/t/taplib.c @@ -0,0 +1,23 @@ +#include "taplib.h" + +#include + +static int nexttest = 1; +static int _exit_status = 0; + +void plan_tests(int n) +{ + printf("1..%d\n", n); +} + +void ok(int cmp, char *name) +{ + printf("%s %d - %s\n", cmp ? "ok" : "not ok", nexttest++, name); + if(!cmp) + _exit_status = 1; +} + +int exit_status(void) +{ + return _exit_status; +} -- cgit v1.2.3