diff options
author | Tim Segers <tsegers@pm.me> | 2023-01-02 21:54:31 +0100 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2023-01-07 15:24:51 +0100 |
commit | 650812777953ecc1ddb1280c86b63fa4b5761ed6 (patch) | |
tree | 4715b5f67e42dc14c59a25d5d90a98c2c2ecb241 /minunit/minunit.h | |
parent | 2fcfc12ea05a8707910376f2e025506db0d89164 (diff) | |
download | opendeco-650812777953ecc1ddb1280c86b63fa4b5761ed6.tar.gz |
Add macro to compare floats with user-defined max error
Diffstat (limited to 'minunit/minunit.h')
-rw-r--r-- | minunit/minunit.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/minunit/minunit.h b/minunit/minunit.h index 608fddf..a20b8b8 100644 --- a/minunit/minunit.h +++ b/minunit/minunit.h @@ -201,6 +201,22 @@ extern void (*minunit_teardown)(void); }\ ) +#define mu_assert_double_near(expected, result, maxabserr) MU__SAFE_BLOCK(\ + double minunit_tmp_e;\ + double minunit_tmp_r;\ + minunit_assert++;\ + minunit_tmp_e = (expected);\ + minunit_tmp_r = (result);\ + if (fabs(minunit_tmp_e-minunit_tmp_r) > maxabserr) {\ + int minunit_significant_figures = 1 - log10(maxabserr);\ + snprintf(minunit_last_message, MINUNIT_MESSAGE_LEN, "%s failed:\n\t%s:%d: %.*g expected but was %.*g", __func__, __FILE__, __LINE__, minunit_significant_figures, minunit_tmp_e, minunit_significant_figures, minunit_tmp_r);\ + minunit_status = 1;\ + return;\ + } else {\ + printf(".");\ + }\ +) + #define mu_assert_string_eq(expected, result) MU__SAFE_BLOCK(\ const char* minunit_tmp_e = expected;\ const char* minunit_tmp_r = result;\ |