Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit 0fe0ade

Browse files
ngzhianrossberg
andauthored
Skip _output directory when listing wast files for test. (#449)
* Skip _output directory when listing wast files for test. Follow-up to #434. Now `make partest && make partest` shouldn't fail. * Use a simpler glob Co-authored-by: Andreas Rossberg <[email protected]>
1 parent dd16427 commit 0fe0ade

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

interpreter/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ $(WINMAKE): clean
113113
# Executing test suite
114114
115115
TESTDIR = ../test/core
116-
TESTFILES = $(shell cd $(TESTDIR); ls *.wast; ls */*.wast)
116+
# Skip _output directory, since that's a tmp directory, and list all other wast files.
117+
TESTFILES = $(shell cd $(TESTDIR); ls *.wast; ls [a-z]*/*.wast)
117118
TESTS = $(TESTFILES:%.wast=%)
118119
119120
.PHONY: test debugtest partest

0 commit comments

Comments
 (0)