mirror of
https://github.com/curl/curl.git
synced 2024-12-21 06:50:10 +08:00
7c5d888ea6
fail is a new function/macro that a test case can use to indicate a test failure for cases when the standard macros are not sufficient.
58 lines
2.2 KiB
C
58 lines
2.2 KiB
C
/*****************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
*/
|
|
|
|
#include "test.h"
|
|
|
|
#define fail_if(expr, msg) \
|
|
if(expr) { \
|
|
fprintf(stderr, "%s:%d Assertion '%s' met: %s\n" , \
|
|
__FILE__, __LINE__, #expr, msg); \
|
|
unitfail++; \
|
|
}
|
|
|
|
#define fail_unless(expr, msg) \
|
|
if(!(expr)) { \
|
|
fprintf(stderr, "%s:%d Assertion '%s' failed: %s\n", \
|
|
__FILE__, __LINE__, #expr, msg); \
|
|
unitfail++; \
|
|
}
|
|
|
|
#define verify_memory(dynamic, check, len) \
|
|
if(dynamic && memcmp(dynamic, check, len)) { \
|
|
fprintf(stderr, "%s:%d The dynamic string didn't match '%s'\n", \
|
|
__FILE__, __LINE__, check); \
|
|
unitfail++; \
|
|
}
|
|
|
|
/* fail() is for when the test case figured out by itself that a check
|
|
proved a failure */
|
|
#define fail(msg) do { \
|
|
fprintf(stderr, "%s:%d test failed: '%s'\n", \
|
|
__FILE__, __LINE__, msg); \
|
|
unitfail++; \
|
|
} while(0)
|
|
|
|
|
|
|
|
extern int unitfail;
|
|
|
|
#define UNITTEST_START \
|
|
int test(char *unused) \
|
|
{ \
|
|
(void)unused; \
|
|
unit_setup(); \
|
|
{
|
|
|
|
#define UNITTEST_STOP \
|
|
} \
|
|
unit_stop(); \
|
|
return unitfail; \
|
|
}
|
|
|