curlcheck.h: add fail_if() fix code

The UNITTEST_START and UNITTEST_STOP defines needed to do a new brace
level so that test cases can declare variables fine and still remain
fine C89 code.
This commit is contained in:
Daniel Stenberg 2011-01-03 23:47:34 +01:00
parent 5c42b2ceae
commit 83e9fb21aa
1 changed files with 10 additions and 1 deletions

View File

@ -9,6 +9,13 @@
#include "test.h"
#define fail_if(expr, msg) \
if(expr) { \
fprintf(stderr, "%s:%d Assertion '%s' met: %s" , \
__FILE__, __LINE__, #expr, msg); \
unitfail++; \
}
#define fail_unless(expr, msg) \
if(!(expr)) { \
fprintf(stderr, "%s:%d Assertion '%s' failed: %s" , \
@ -22,9 +29,11 @@ extern int unitfail;
int test(char *unused) \
{ \
(void)unused; \
unit_setup();
unit_setup(); \
{
#define UNITTEST_STOP \
} \
unit_stop(); \
return unitfail; \
}