godzie44 / BugStalker

Rust debugger for Linux x86-64
MIT License
554 stars 15 forks source link

Question: How to debug tests? #30

Closed TornaxO7 closed 3 months ago

TornaxO7 commented 3 months ago

Hi! May I ask how I can debug a test? Would be cool if you could debug a test with bs mod1::mod2::mod3::name_of_test_function.

EDIT1: Ok, they are stored in target/debug/deps but... I can't find my integration tests there.

TornaxO7 commented 3 months ago

Ok, found a way to do this: cargo test --no-run will just create the binary and then I can start it there.