From cbe6979f1d602c3c998fc3432aad671f45139e0e Mon Sep 17 00:00:00 2001 From: Michael-F-Bryan Date: Wed, 4 Oct 2023 15:04:04 +0800 Subject: [PATCH] Use nextest when running unit tests for the main set of crates --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 349e771a9d0..7ed75500017 100644 --- a/Makefile +++ b/Makefile @@ -542,7 +542,8 @@ test-stage-0-wast: # test packages test-stage-1-test-all: - $(CARGO_BINARY) test $(CARGO_TARGET_FLAG) --all --release $(exclude_tests) --exclude wasmer-c-api-test-runner --exclude wasmer-capi-examples-runner $(compiler_features) --locked + $(CARGO_BINARY) nextest run $(CARGO_TARGET_FLAG) --workspace --release $(exclude_tests) --exclude wasmer-c-api-test-runner --exclude wasmer-capi-examples-runner $(compiler_features) --locked + $(CARGO_BINARY) test --doc $(CARGO_TARGET_FLAG) --workspace --release $(exclude_tests) --exclude wasmer-c-api-test-runner --exclude wasmer-capi-examples-runner $(compiler_features) --locked test-stage-2-test-compiler-cranelift-nostd: $(CARGO_BINARY) test $(CARGO_TARGET_FLAG) --manifest-path lib/compiler-cranelift/Cargo.toml --release --no-default-features --features=std --locked test-stage-3-test-compiler-singlepass-nostd: