Skip to content

Commit

Permalink
Merge #1743
Browse files Browse the repository at this point in the history
1743: Add the test-$(compiler) rules back. r=nlewycky a=nlewycky

I keep typing `make test-llvm`.

Co-authored-by: Nick Lewycky <nick@wasmer.io>
  • Loading branch information
bors[bot] and nlewycky authored Oct 21, 2020
2 parents a3ffc9e + c9b86e0 commit 36a713a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ build-capi-llvm:
# Testing #
###########

test: $(foreach engine,$(engines),$(foreach compiler,$(compilers),test-$(compiler)-$(engine))) test-packages test-examples test-deprecated
test: $(foreach compiler,$(compilers),test-$(compiler)) test-packages test-examples test-deprecated

# Singlepass and native engine don't work together, this rule does nothing.
test-singlepass-native:
Expand All @@ -121,6 +121,12 @@ test-llvm-native:
test-llvm-jit:
cargo test --release $(compiler_features) --features "test-llvm test-jit"

test-singlepass: $(foreach engine,$(engines),test-singlepass-$(engine))

test-cranelift: $(foreach engine,$(engines),test-cranelift-$(engine))

test-llvm: $(foreach engine,$(engines),test-llvm-$(engine))

test-packages:
cargo test -p wasmer --release
cargo test -p wasmer-vm --release
Expand Down

0 comments on commit 36a713a

Please sign in to comment.