Bug 1661283 Part 5: Add a test of GetOverflowingChildrenOfElement on the body element...
[gecko.git] / third_party / rust / failure / Makefile
blob6ff732985761eb171e2e33e7e2ee79b010b4647a
1 all: test
2 .PHONY: all
4 test:
5 @echo TEST DEFAULT FEATURES
6 @cargo test --all
7 @echo TEST WITH BACKTRACE
8 @cargo test --features backtrace --all
9 @echo TEST NO DEFAULT FEATURES
10 @cargo check --no-default-features --all
11 .PHONY: test
13 check:
14 @cargo check --all
15 .PHONY: check