23 #include "my_global.h"
80 extern int skip_big_tests;
109 void plan(
int const count);
128 void ok(
int const pass,
char const *
fmt, ...)
129 __attribute__((format(printf,2,3)));
140 void ok1(
int const pass);
171 void skip(
int how_many,
char const *reason, ...)
172 __attribute__((format(printf,2,3)));
192 #define SKIP_BLOCK_IF(SKIP_IF_TRUE, COUNT, REASON) \
193 if (SKIP_IF_TRUE) skip((COUNT),(REASON)); else
210 #define SKIP_BIG_TESTS(COUNT) \
211 if (skip_big_tests) skip((COUNT), "big test"); else
220 void diag(
char const *fmt, ...)
221 __attribute__((format(printf,1,2)));
243 __attribute__((noreturn, format(printf,1,2)));
273 void skip_all(
char const *reason, ...)
274 __attribute__((noreturn, format(printf, 1, 2)));
299 __attribute__((format(printf, 1, 2)));