mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 22:51:50 +03:00
Don't do reentrant testing in junk tests.
This commit is contained in:
parent
ce17af4221
commit
8da6676a02
1 changed files with 5 additions and 1 deletions
|
|
@ -185,7 +185,11 @@ int
|
|||
main(void) {
|
||||
junk_alloc_callback = &test_junk;
|
||||
junk_free_callback = &test_junk;
|
||||
return test(
|
||||
/*
|
||||
* We check the last pointer junked. If a reentrant call happens, that
|
||||
* might be an internal allocation.
|
||||
*/
|
||||
return test_no_reentrancy(
|
||||
test_junk_alloc_free,
|
||||
test_realloc_expand);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue