[go: up one dir, main page]

dhat 0.3.3

A library for heap profiling and ad hoc profiling with DHAT.
Documentation
#[global_allocator]
static ALLOC: dhat::Alloc = dhat::Alloc;

#[test]
fn main() {
    let profiler = dhat::Profiler::builder().testing().eprint_json().build();

    let _v1 = vec![1, 2, 3, 4];
    let _v2 = vec![5, 6, 7, 8];

    // Test with and without extra arguments.
    let stats = dhat::HeapStats::get();
    dhat::assert!(stats.curr_blocks == 2);

    dhat::assert_is_panic(
        || dhat::assert!(stats.curr_bytes == 31),
        "dhat: assertion failed: stats.curr_bytes == 31",
    );

    dhat::assert_is_panic(
        || dhat::assert!(stats.curr_bytes == 32, "extra {} {}", 1, "2"),
        "dhat: asserting after the profiler has asserted",
    );

    drop(profiler);

    let _profiler = dhat::Profiler::builder().testing().eprint_json().build();

    // Normal assert on a second profiler.
    dhat::assert_is_panic(|| dhat::assert!(false), "dhat: assertion failed: false");
}