summaryrefslogtreecommitdiffstats
path: root/nix-rust
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-05-08 11:49:40 +0200
committerEelco Dolstra <edolstra@gmail.com>2020-05-08 11:49:40 +0200
commit7898cdb75a721cc21867ccdbcc523e95f2db0354 (patch)
tree28165f267735bb6bf0dc3075482cd23b4657bb60 /nix-rust
parent72b9d971bc4ff5b5dcb9349d03526a5ef3e4300e (diff)
make check: Run unit tests
Diffstat (limited to 'nix-rust')
-rw-r--r--nix-rust/local.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix-rust/local.mk b/nix-rust/local.mk
index 1e006e500..e4bfde31b 100644
--- a/nix-rust/local.mk
+++ b/nix-rust/local.mk
@@ -41,5 +41,5 @@ ifneq ($(OS), Darwin)
check: rust-tests
rust-tests:
- cd nix-rust && CARGO_HOME=$$(if [[ -d vendor ]]; then echo vendor; fi) cargo test --release $$(if [[ -d vendor ]]; then echo --offline; fi)
+ $(trace-test) cd nix-rust && CARGO_HOME=$$(if [[ -d vendor ]]; then echo vendor; fi) cargo test --release $$(if [[ -d vendor ]]; then echo --offline; fi)
endif