X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftesting.h;h=42f45ce6a71a989d9a30ca9497f7b13c516ce96e;hb=60eed060934ac811311713eba9b70880de7e7d04;hp=49124daa391476509916fbdf03e97445af2cac56;hpb=2079ee1517e34de372f58e7e2267ad5c71a8a41f;p=collectd.git diff --git a/src/testing.h b/src/testing.h index 49124daa..42f45ce6 100644 --- a/src/testing.h +++ b/src/testing.h @@ -51,10 +51,13 @@ static int check_count__ = 0; #define END_TEST exit((fail_count__ == 0) ? 0 : 1); +#define LOG(result, text) \ + printf("%s %i - %s\n", result ? "ok" : "not ok", ++check_count__, text) + #define OK1(cond, text) \ do { \ _Bool result = (cond); \ - printf("%s %i - %s\n", result ? "ok" : "not ok", ++check_count__, text); \ + LOG(result, text); \ if (!result) { \ return -1; \ } \