preserves/implementations/rust/preserves/Makefile

26 lines
654 B
Makefile

TESTARGS=--lib --bins --examples --tests
# cargo install cargo-watch
watch:
cargo watch -c -x 'test $(TESTARGS) -- --nocapture'
test:
cargo test $(TESTARGS) -- --nocapture
bench: benches/testdata.bin
cargo bench --benches
.INTERMEDIATE: benches/testdata.bin
benches/testdata.bin: benches/testdata.bin.gz
gzip -dc $< > $@
clippy-watch:
cargo watch -c -x 'clippy $(TESTARGS)'
inotifytest:
inotifytest sh -c 'reset; cargo build $(TESTARGS) && RUST_BACKTRACE=1 cargo test $(TESTARGS) -- --nocapture'
debug-tests:
cargo test $(TESTARGS) --no-run
gdb --args $$(cargo test 3>&1 1>&2 2>&3 3>&- | grep Running | awk '{print $$2}') --test-threads=1