diff options
author | daan <daan@effp.org> | 2022-02-10 11:46:43 -0800 |
---|---|---|
committer | daan <daan@effp.org> | 2022-02-10 11:46:43 -0800 |
commit | 352d8be237e0aaa28f4e9dbcee3a392b19e4339c (patch) | |
tree | 836fb9bc8a0660a74d5724c309b2a6fd732a43b4 /test/test-api.c | |
parent | e87b1d2298313f2ec47da0d76dbfc195742126fc (diff) | |
parent | ccbc8ae0bbfd71928dcb11b16ccad3c54c85e72d (diff) |
Merge branch 'dev' into dev-slice
Diffstat (limited to 'test/test-api.c')
-rw-r--r-- | test/test-api.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test-api.c b/test/test-api.c index 7ce6f11..0302464 100644 --- a/test/test-api.c +++ b/test/test-api.c @@ -72,6 +72,10 @@ int main(void) { CHECK_BODY("calloc0",{ result = (mi_usable_size(mi_calloc(0,1000)) <= 16); }); + CHECK_BODY("malloc-large",{ // see PR #544. + void* p = mi_malloc(67108872); + mi_free(p); + }); // --------------------------------------------------- // Extended |