merge from dev

This commit is contained in:
Daan Leijen 2021-06-17 20:05:40 -07:00
commit b3b0fb5832
3 changed files with 32 additions and 10 deletions

View file

@ -34,6 +34,7 @@ void various_tests();
void test_mt_shutdown();
void large_alloc(void); // issue #363
void fail_aslr(); // issue #372
void tsan_numa_test(); // issue #414
int main() {
mi_stats_reset(); // ignore earlier allocations
@ -44,6 +45,8 @@ int main() {
padding_shrink();
various_tests();
large_alloc();
tsan_numa_test();
//test_mt_shutdown();
//fail_aslr();
mi_stats_print(NULL);
@ -231,4 +234,16 @@ void fail_aslr() {
void* p = malloc(sz);
printf("pointer p: %p: area up to %p\n", p, (uint8_t*)p + sz);
*(int*)0x5FFFFFFF000 = 0; // should segfault
}
// issues #414
void dummy_worker() {
void* p = mi_malloc(0);
mi_free(p);
}
void tsan_numa_test() {
auto t1 = std::thread(dummy_worker);
dummy_worker();
t1.join();
}