# cargo install cargo-watch
watch:
	cargo watch -c -x 'check --all-targets' -x 'test --all-targets -- --nocapture'

clippy-watch:
	cargo watch -c -x 'clippy --all-targets'

inotifytest:
	inotifytest sh -c 'reset; cargo build --all-targets && RUST_BACKTRACE=1 cargo test --all-targets -- --nocapture'

debug-tests:
	cargo test --all-targets --no-run
	gdb --args $$(cargo test 3>&1 1>&2 2>&3 3>&- | grep Running | awk '{print $$2}') --test-threads=1
