mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 11:35:07 -05:00
32aedf1d3d
These are for when a test failure makes it impossible to continue running further tests.
87 lines
3.6 KiB
C
87 lines
3.6 KiB
C
/*****************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
*/
|
|
|
|
#include "test.h"
|
|
|
|
/* The fail macros mark the current test step as failed, and continue */
|
|
#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)
|
|
|
|
|
|
/* The abort macros mark the current test step as failed, and exit the test */
|
|
#define abort_if(expr, msg) \
|
|
if(expr) { \
|
|
fprintf(stderr, "%s:%d Abort assertion '%s' met: %s\n" , \
|
|
__FILE__, __LINE__, #expr, msg); \
|
|
unitfail++; \
|
|
goto unit_test_abort; \
|
|
}
|
|
|
|
#define abort_unless(expr, msg) \
|
|
if(!(expr)) { \
|
|
fprintf(stderr, "%s:%d Abort assertion '%s' failed: %s\n", \
|
|
__FILE__, __LINE__, #expr, msg); \
|
|
unitfail++; \
|
|
goto unit_test_abort; \
|
|
}
|
|
|
|
#define abort_test(msg) do { \
|
|
fprintf(stderr, "%s:%d test aborted: '%s'\n", \
|
|
__FILE__, __LINE__, msg); \
|
|
unitfail++; \
|
|
goto unit_test_abort; \
|
|
} while(0)
|
|
|
|
|
|
|
|
extern int unitfail;
|
|
|
|
#define UNITTEST_START \
|
|
int test(char *unused) \
|
|
{ \
|
|
(void)unused; \
|
|
if (unit_setup()) { \
|
|
fail("unit_setup() failure"); \
|
|
} else {
|
|
|
|
#define UNITTEST_STOP \
|
|
goto unit_test_abort; /* avoid warning */ \
|
|
unit_test_abort: \
|
|
unit_stop(); \
|
|
} \
|
|
return unitfail; \
|
|
}
|
|
|