Skip to content
This repository was archived by the owner on Mar 24, 2022. It is now read-only.

Commit e08a6c8

Browse files
committed
makefile: rename the test-packages target to test-crates
1 parent 658a7e7 commit e08a6c8

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Makefile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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
4949
test-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
5455
test-signature:

0 commit comments

Comments
 (0)