Skip to content

Commit 939b409

Browse files
committed
Make partest the default
1 parent fe6c68c commit 939b409

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interpreter/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ JS = # set to JS shell command to run JS tests, empty to skip
2424
.PHONY: default all ci jslib zip
2525

2626
default: $(NAME)
27-
all: default test
27+
all: default partest
2828
ci: all jslib zip
2929

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

9292

9393
# Packaging

0 commit comments

Comments
 (0)