(name: &str)
| 7 | use std::process::Command; |
| 8 | |
| 9 | fn compile_spawn_binary(name: &str) -> anyhow::Result<std::path::PathBuf> { |
| 10 | shared::compile_rust_binary(Path::new("testdata/spawn_wrapper"), name, &[]) |
| 11 | } |
| 12 | |
| 13 | /// Without discovering the child's static allocator, the spawned child's |
| 14 | /// jemalloc allocations should NOT be tracked — we expect no marker-delimited events. |
no test coverage detected