Skip to content

Commit

Permalink
Make partest the default
Browse files Browse the repository at this point in the history
  • Loading branch information
rossberg committed Sep 1, 2023
1 parent b78e1d0 commit 6ef660e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interpreter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ JS = # set to JS shell command to run JS tests, empty to skip
.PHONY: default all ci jslib zip

default: $(NAME)
all: default test
all: default partest
ci: all jslib zip

jslib: $(JSLIB)
Expand Down Expand Up @@ -87,7 +87,7 @@ quiettest/%: $(NAME)
$(TESTDIR)/run.py 2>$(@F).out --wasm `pwd`/$(NAME) $(if $(JS),--js '$(JS)',) $(TESTDIR)/$*.wast && \
rm $(@F).out \
) || \
cat $(@F).out || rm $(@F).out || exit 1
(cat $(@F).out && rm $(@F).out && exit 1)


# Packaging
Expand Down

0 comments on commit 6ef660e

Please sign in to comment.