mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-08-04 19:08:32 +00:00
10 lines
233 B
Makefile
10 lines
233 B
Makefile
test:
|
|
cargo test --workspace --all-features --all-targets --no-fail-fast
|
|
|
|
miri:
|
|
cargo +nightly miri test --no-fail-fast --all-features
|
|
|
|
loom:
|
|
RUSTFLAGS="--cfg loom" cargo check --workspace --features loom
|
|
|
|
all: test miri
|