]> pd.if.org Git - ctap/blobdiff - ctap.c
Major rewrite to eliminate duplicate code.
[ctap] / ctap.c
diff --git a/ctap.c b/ctap.c
index 6238747fd33eeb28acd2822e1e031f2cf4b0331b..9bdf9f395b541d275a2ae93453389ac972e73d93 100644 (file)
--- a/ctap.c
+++ b/ctap.c
 /* global variable testnum? */
 static int test = 0; /* the test number */
 static int planned = 0;
+static int intodo = 0;
+
+void begin_todo(void) {
+       intodo = 1;
+}
+
+void end_todo(void) {
+       intodo = 0;
+}
 
 void plan(int tests) {
        test = 0;
@@ -32,7 +41,7 @@ void skip_all(const char *why, ...) {
        printf("1..0");
        if (why) {
                va_list args;
-               printf(" # skip ");
+               printf(" # SKIP ");
                va_start(args, why);
                vfprintf(stdout, why, args);
                va_end(args);
@@ -40,79 +49,80 @@ void skip_all(const char *why, ...) {
        printf("\n");
 }
 
-void okv(int pass, const char *fmt, va_list args) {
+static void vfmtline(int pass, const char *directive, const char *fmt, va_list args) {
        printf("%sok %d", pass ? "" : "not ", ++test);
+       if (fmt && !directive) {
+               printf(" -");
+       }
+       if (directive) {
+               printf(" # %s", directive);
+       }
        if (fmt) {
-               printf(" ");
+               printf(" ");
                vfprintf(stdout, fmt, args);
        }
        printf("\n");
 }
 
+#if 0
+static void fmtline(int pass, const char *info, const char *fmt, ...) {
+       va_list args;
+
+       va_start(args,fmt);
+       vfmtline(pass, info, fmt, args);
+       va_end(args);
+}
+#endif
+
+void okv(int pass, const char *fmt, va_list args) {
+       vfmtline(pass, intodo ? "TODO" : 0, fmt, args);
+}
+
 void ok(int pass, char *fmt, ...) {
        va_list args;
 
-       printf("%sok %d", pass ? "" : "not ", ++test);
-       if (fmt) {
-               printf(" # ");
-               va_start(args, fmt);
-               vfprintf(stdout, fmt, args);
-               va_end(args);
-       }
-       printf("\n");
+       va_start(args, fmt);
+       okv(pass, fmt, args);
+       va_end(args);
 }
 
 void ok_block(unsigned long count, int pass, const char *fmt, ...) {
+       va_list args;
+       va_list copy;
+
        if (count == 0) {
                return;
        }
-       if (fmt) {
-               va_list args;
-               va_list copy;
-               va_start(args, fmt);
-               while (count--) {
-                       va_copy(copy, args);
-                       okv(pass, fmt, copy);
-                       va_end(copy);
-               }
-               va_end(args);
-       } else {
-               while (count--) {
-                       ok(pass, NULL);
-               }
+
+       va_start(args, fmt);
+       while (count--) {
+               va_copy(copy, args);
+               okv(pass, fmt, copy);
+               va_end(copy);
        }
+       va_end(args);
 }
 
 void skip(const char *why, ...) {
        va_list args;
 
-       printf("ok %d # skip", ++test);
-       if (why) {
-               printf(" ");
-               va_start(args, why);
-               vfprintf(stdout, why, args);
-               va_end(args);
-       }
-       printf("\n");
+       va_start(args, why);
+       vfmtline(1, "SKIP", why, args);
+       va_end(args);
 }
 
 void skip_block(unsigned long count, const char *why, ...) {
-       if (why) {
-               va_list args;
-               va_list copy;
-               va_start(args, why);
-               while (count--) {
-                       va_copy(copy, args);
-                       printf("ok %d # skip", ++test);
-                       printf(" ");
-                       vfprintf(stdout, why, copy);
-                       va_end(copy);
-                       printf("\n");
-               }
-               va_end(args);
-       } else {
-               printf("ok %d # skip\n", ++test);
+       va_list args;
+       va_list copy;
+       va_start(args, why);
+
+       while (count--) {
+               va_copy(copy, args);
+               vfmtline(1, "SKIP", why, args);
+               va_end(copy);
        }
+
+       va_end(args);
 }
 
 void bail(const char *fmt, ...) {