2022-06-13 12:28:00 -04:00
|
|
|
#define KERNAUX_DEBUG
|
2021-12-14 15:37:11 -05:00
|
|
|
#include <kernaux/assert.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
static unsigned int count = 0;
|
|
|
|
static const char *last_file = NULL;
|
|
|
|
static int last_line = 0;
|
|
|
|
static const char *last_str = NULL;
|
|
|
|
|
|
|
|
static void assert_cb(
|
|
|
|
const char *const file,
|
|
|
|
const int line,
|
|
|
|
const char *const str
|
|
|
|
) {
|
|
|
|
++count;
|
|
|
|
last_file = file;
|
|
|
|
last_line = line;
|
|
|
|
last_str = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
kernaux_assert_cb = assert_cb;
|
|
|
|
|
2021-12-17 18:43:19 -05:00
|
|
|
KERNAUX_ASSERT(1 == 1);
|
2021-12-14 15:37:11 -05:00
|
|
|
|
|
|
|
assert(count == 0);
|
|
|
|
assert(last_file == NULL);
|
|
|
|
assert(last_line == 0);
|
|
|
|
assert(last_str == NULL);
|
|
|
|
|
2021-12-17 18:43:19 -05:00
|
|
|
KERNAUX_ASSERT(1 != 1);
|
2021-12-14 15:37:11 -05:00
|
|
|
|
|
|
|
assert(count == 1);
|
|
|
|
assert(strcmp(last_file, __FILE__) == 0);
|
|
|
|
assert(last_line == __LINE__ - 4);
|
|
|
|
assert(strcmp(last_str, "1 != 1") == 0);
|
|
|
|
|
2021-12-17 18:43:19 -05:00
|
|
|
KERNAUX_ASSERT(strcmp("qwe", "rty") == 0);
|
2021-12-14 15:37:11 -05:00
|
|
|
|
|
|
|
assert(count == 2);
|
|
|
|
assert(strcmp(last_file, __FILE__) == 0);
|
|
|
|
assert(last_line == __LINE__ - 4);
|
|
|
|
assert(strcmp(last_str, "strcmp(\"qwe\", \"rty\") == 0") == 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|