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:
Snild Dolkow 2023-09-04 16:02:45 +02:00
parent e52b6b8b8c
commit d825624d92
2 changed files with 5 additions and 1 deletions

View file

@ -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) {

View file

@ -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);