32 lines
700 B
Rust
32 lines
700 B
Rust
#![cfg(target_os = "macos")]
|
|
|
|
use kqueue::Watcher;
|
|
use tempfile::NamedTempFile;
|
|
|
|
#[global_allocator]
|
|
static ALLOC: dhat::Alloc = dhat::Alloc;
|
|
|
|
#[test]
|
|
fn test_add_single() {
|
|
let f = NamedTempFile::new().unwrap();
|
|
|
|
let _profiler = dhat::Profiler::builder().testing().build();
|
|
|
|
let mut w = Watcher::new().unwrap();
|
|
w.add_filename(
|
|
f.path(),
|
|
kqueue::EventFilter::EVFILT_VNODE,
|
|
kqueue::FilterFlag::empty(),
|
|
)
|
|
.unwrap();
|
|
|
|
drop(w);
|
|
|
|
let stats = dhat::HeapStats::get();
|
|
dhat::assert_eq!(stats.total_bytes, 263);
|
|
dhat::assert_eq!(stats.total_blocks, 2);
|
|
|
|
dhat::assert_eq!(stats.curr_bytes, 0);
|
|
dhat::assert_eq!(stats.curr_blocks, 0);
|
|
}
|