We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 764aa44 commit 06b510cCopy full SHA for 06b510c
test/test-api.c
@@ -295,11 +295,13 @@ int main(void) {
295
// ---------------------------------------------------
296
// various
297
298
+ #if !defined(MI_TRACK_ASAN) // realpath may leak with ASAN enabled (as the ASAN allocator intercepts it)
299
CHECK_BODY("realpath") {
300
char* s = mi_realpath( ".", NULL );
301
// printf("realpath: %s\n",s);
302
mi_free(s);
303
};
304
+ #endif
305
306
CHECK("stl_allocator1", test_stl_allocator1());
307
CHECK("stl_allocator2", test_stl_allocator2());
0 commit comments