diff options
author | daan <daanl@outlook.com> | 2022-01-10 16:21:15 -0800 |
---|---|---|
committer | daan <daanl@outlook.com> | 2022-01-10 16:21:15 -0800 |
commit | a74c05c6c0cda3fb4d1aa515dc36aea5e08d2c65 (patch) | |
tree | edb187811e35f786f6f58a50530c28f917cea134 /test | |
parent | a763b6310dbbecc92ed549dba757690381195853 (diff) | |
parent | 05c2a51211bd5b952483d7eccb22dc5d5428155a (diff) |
Merge branch 'dev' into dev-slice
Diffstat (limited to 'test')
-rw-r--r-- | test/main-override.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/main-override.cpp b/test/main-override.cpp index 8834f2c..e0dba5a 100644 --- a/test/main-override.cpp +++ b/test/main-override.cpp @@ -50,7 +50,7 @@ int main() { tsan_numa_test(); strdup_test(); - //test_mt_shutdown(); + test_mt_shutdown(); //fail_aslr(); bench_alloc_large(); mi_stats_print(NULL); @@ -76,7 +76,7 @@ public: static void various_tests() { atexit(free_p); void* p1 = malloc(78); - void* p2 = mi_malloc_aligned(16, 24); + void* p2 = mi_malloc_aligned(24, 16); free(p1); p1 = malloc(8); char* s = mi_strdup("hello\n"); |