1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 13:37:48 +00:00

enh(readme): explain how to debug with gdb

This commit is contained in:
Sylvestre Ledru 2020-07-12 15:34:42 +02:00
parent bb01e67521
commit 2a9b47ed86

View file

@ -228,6 +228,13 @@ If you would prefer to test a select few utilities:
$ cargo test --features "chmod mv tail" --no-default-features
```
To debug:
```bash
$ gdb --args target/debug/coreutils ls
(gdb) b ls.rs:79
(gdb) run
```
### GNU Make ###
To simply test all available utilities: