diff --git a/Makefile b/Makefile index 51516ae..c89bf0a 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ check: suite: git submodule update --init modules/djot.js for f in $$(find modules/djot.js/test -name '*.test' | xargs basename -a); do \ - ln -fs ../../modules/djot.js/test/$$f tests/suite/$$f; \ + ln -fs ../../modules/djot.js/test/$$f tests/suite/djot_js_$$f; \ done (cd tests/suite && make) cargo test --features suite suite:: diff --git a/tests/suite/Makefile b/tests/suite/Makefile index ed00f7e..e52b030 100644 --- a/tests/suite/Makefile +++ b/tests/suite/Makefile @@ -5,9 +5,9 @@ TEST=$(shell find . -name '*.test' | sort) TEST_RS=${TEST:.test=.rs} -BLACKLIST += filters # lua filters not implemented -BLACKLIST += symb # uses ast -BLACKLIST += sourcepos # not parsable +BLACKLIST += djot_js_filters # lua filters not implemented +BLACKLIST += djot_js_symb # uses ast +BLACKLIST += djot_js_sourcepos # not parsable .PHONY: suite suite: mod.rs