summaryrefslogtreecommitdiff
path: root/t/taplib.c
diff options
context:
space:
mode:
Diffstat (limited to 't/taplib.c')
-rw-r--r--t/taplib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/taplib.c b/t/taplib.c
index 066e5b0..23e4ed1 100644
--- a/t/taplib.c
+++ b/t/taplib.c
@@ -32,6 +32,11 @@ void fail(char *name)
_exit_status = 1;
}
+void skip(char *reason)
+{
+ printf("ok %d # %s\n", nexttest++, reason);
+}
+
void ok(int cmp, char *name)
{
if(cmp)