tests suite: update tests from new djot impl repo

replace jgm/djot submodule with jgm/djot.js that contains newer tests
This commit is contained in:
Noah Hellman 2023-01-16 18:53:48 +01:00
parent f80991d07a
commit 8c1d38fe12
4 changed files with 7 additions and 7 deletions

View file

@ -2,9 +2,9 @@
.PHONY: suite
suite:
git submodule update --init modules/djot
for f in $$(find modules/djot/test -name '*.test' | xargs basename -a); do \
ln -fs ../../modules/djot/test/$$f tests/suite/$$f; \
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; \
done
(cd tests/suite && make)
cargo test --features suite