rust: run tests with same features as build

Cargo check wasn't being passed --features so could have a different
configuration than the build.
pull/4292/head
Jason Ish 5 years ago
parent 389272f4c7
commit a3cdef2b4d

@ -53,7 +53,8 @@ distclean-local: clean-local
rm -rf vendor gen Cargo.lock
check:
CARGO_HOME="$(CARGO_HOME)" @rustup_home@ $(CARGO) test
CARGO_HOME="$(CARGO_HOME)" @rustup_home@
$(CARGO) test --features "$(RUST_FEATURES)"
Cargo.lock: Cargo.toml
CARGO_HOME="$(CARGO_HOME)" @rustup_home@ $(CARGO) \

Loading…
Cancel
Save