blob: 6ff732985761eb171e2e33e7e2ee79b010b4647a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all: test
.PHONY: all
test:
@echo TEST DEFAULT FEATURES
@cargo test --all
@echo TEST WITH BACKTRACE
@cargo test --features backtrace --all
@echo TEST NO DEFAULT FEATURES
@cargo check --no-default-features --all
.PHONY: test
check:
@cargo check --all
.PHONY: check
|