summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-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 e1795ec..f748c75 100644
--- a/test/main-override.cpp
+++ b/test/main-override.cpp
@@ -46,7 +46,7 @@ int main() {
tsan_numa_test();
strdup_test();
- //test_mt_shutdown();
+ test_mt_shutdown();
//fail_aslr();
mi_stats_print(NULL);
return 0;
@@ -71,7 +71,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");