I currently can't run a full make check when using --disable-jemalloc, because there are a few tests that assume they have multiple allocators to play with. Those I found were:
src/test/compile-fail/allocator-dylib-is-system.rs
src/test/compile-fail/allocator-rust-dylib-is-jemalloc.rs
src/test/run-pass/allocator-default.rs
All three of these are at least conditional on target_os = "linux" or "macos", but having linux without jemalloc gets a quick failure.
I currently can't run a full
make checkwhen using--disable-jemalloc, because there are a few tests that assume they have multiple allocators to play with. Those I found were:src/test/compile-fail/allocator-dylib-is-system.rssrc/test/compile-fail/allocator-rust-dylib-is-jemalloc.rssrc/test/run-pass/allocator-default.rsAll three of these are at least conditional on
target_os = "linux"or"macos", but having linux without jemalloc gets a quick failure.