mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
minicheck: Add fail_unless() macro
...and fix _fail_unless() so that it doesn't always fail. All existing calls to it pass 0, so there's no immediate change in behavior in this commit.
This commit is contained in:
parent
e52b6b8b8c
commit
d825624d92
2 changed files with 5 additions and 1 deletions
|
@ -244,7 +244,9 @@ _fail_unless(int condition, const char *file, int line, const char *msg) {
|
|||
we have a failure, so there's no reason to be quiet about what
|
||||
it is.
|
||||
*/
|
||||
UNUSED_P(condition);
|
||||
if (condition) {
|
||||
return;
|
||||
}
|
||||
_check_current_filename = file;
|
||||
_check_current_lineno = line;
|
||||
if (msg != NULL) {
|
||||
|
|
|
@ -84,6 +84,8 @@ extern "C" {
|
|||
void PRINTF_LIKE(1, 2) set_subtest(char const *fmt, ...);
|
||||
|
||||
# define fail(msg) _fail_unless(0, __FILE__, __LINE__, msg)
|
||||
# define fail_unless(cond) \
|
||||
_fail_unless((cond), __FILE__, __LINE__, "check failed: " #cond)
|
||||
|
||||
typedef void (*tcase_setup_function)(void);
|
||||
typedef void (*tcase_teardown_function)(void);
|
||||
|
|
Loading…
Add table
Reference in a new issue