diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-02 21:43:13 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-02 22:54:16 +0200 |
commit | a108e12c505ab6d6a5577b6fb39166e049271221 (patch) | |
tree | f335aa190a97f47dd91c7da6ff5af0a9d372a398 /test | |
parent | 518efccab147cae5b670c14ea1fc7b477f696a09 (diff) |
compat/assert: reduce executable size
Diffstat (limited to 'test')
-rw-r--r-- | test/critter.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/critter.cpp b/test/critter.cpp index d9f50205..950e2d01 100644 --- a/test/critter.cpp +++ b/test/critter.cpp @@ -147,10 +147,7 @@ bool run(world& w, const function_view<Ns() const>& make_dt, if (b) [[likely]] return false; else - { - fm_EMIT_DEBUG("", "assertion failed: false in %s:%d", file, line); - fm_EMIT_ABORT(); - } + fm_emit_assert_fail("false", file, line); }; for (i = 0; true; i++) |