This repository was archived by the owner on Mar 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ install-dev: build-dev
2121 @helpers/install.sh --unoptimized
2222
2323.PHONY : test
24- test : indent-check test-packages
24+ test : indent-check test-crates
2525
26- .PHONY : test-packages
27- test-packages :
26+ .PHONY : test-crates
27+ test-crates :
2828 cargo test --no-fail-fast --all $(CRATES_NOT_TESTED:%=--exclude % )
2929
3030.PHONY : test-full
@@ -43,12 +43,13 @@ test-release-executables:
4343 helpers/lucet-toolchain-tests/objdump.sh release
4444
4545.PHONY : test-ci
46- test-ci : test-packages test-objdump test-bitrot test-signature test-objdump
46+ test-ci : test-crates test-objdump test-bitrot test-signature test-objdump
4747
4848.PHONY : test-bitrot
4949test-bitrot :
50- # build but do *not* run these packages to mitigate bitrot
51- cargo build -p lucet-spectest -p lucet-runtime-example
50+ # build but do *not* run these crates. The tests for these crates are
51+ # known to fail, but we want to make sure they still build.
52+ cargo check -p lucet-spectest -p lucet-runtime-example
5253
5354.PHONY : test-signature
5455test-signature :
You can’t perform that action at this time.
0 commit comments