Took me a while to figure out how to debug a hanging Rust test. The best invocation seems to be: $ RUST_TEST_THREADS=1 cargo test -- --nocapture This will print test names before execution, so you can see where you're hanging. --nocapture lets you see print output immediately.