diff options
author | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2013-01-04 17:39:41 +0000 |
---|---|---|
committer | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2013-01-04 17:39:41 +0000 |
commit | b4067d8afb3f6d24b341eca46bb031f56011ab05 (patch) | |
tree | 50f7cb21f89b2eb927705013065505069bb11d27 /t | |
parent | 5190963f1baf22a313ed70a964c2a83174f4e841 (diff) | |
download | termo-b4067d8afb3f6d24b341eca46bb031f56011ab05.tar.gz termo-b4067d8afb3f6d24b341eca46bb031f56011ab05.tar.xz termo-b4067d8afb3f6d24b341eca46bb031f56011ab05.zip |
Updated shared taplib
Diffstat (limited to 't')
-rw-r--r-- | t/taplib.c | 18 | ||||
-rw-r--r-- | t/taplib.h | 2 |
2 files changed, 17 insertions, 3 deletions
@@ -12,11 +12,23 @@ void plan_tests(int n) printf("1..%d\n", n); } +void pass(char *name) +{ + printf("ok %d - %s\n", nexttest++, name); +} + +void fail(char *name) +{ + printf("not ok %d - %s\n", nexttest++, name); + _exit_status = 1; +} + void ok(int cmp, char *name) { - printf("%s %d - %s\n", cmp ? "ok" : "not ok", nexttest++, name); - if(!cmp) - _exit_status = 1; + if(cmp) + pass(name); + else + fail(name); } void diag(char *fmt, ...) @@ -1,5 +1,7 @@ void plan_tests(int n); void ok(int cmp, char *name); +void pass(char *name); +void fail(char *name); void is_int(int got, int expect, char *name); void is_str(const char *got, const char *expect, char *name); int exit_status(void); |