summaryrefslogtreecommitdiff
path: root/test/main-override.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/main-override.cpp')
-rw-r--r--test/main-override.cpp4
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");