We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b78e1d0 commit 6ef660eCopy full SHA for 6ef660e
interpreter/Makefile
@@ -24,7 +24,7 @@ JS = # set to JS shell command to run JS tests, empty to skip
24
.PHONY: default all ci jslib zip
25
26
default: $(NAME)
27
-all: default test
+all: default partest
28
ci: all jslib zip
29
30
jslib: $(JSLIB)
@@ -87,7 +87,7 @@ quiettest/%: $(NAME)
87
$(TESTDIR)/run.py 2>$(@F).out --wasm `pwd`/$(NAME) $(if $(JS),--js '$(JS)',) $(TESTDIR)/$*.wast && \
88
rm $(@F).out \
89
) || \
90
- cat $(@F).out || rm $(@F).out || exit 1
+ (cat $(@F).out && rm $(@F).out && exit 1)
91
92
93
# Packaging
0 commit comments