Bug 1502293 [wpt PR 13730] - cc Update makefile for doc-conformance tests, a=testonly

Automatic update from web-platform-testscc Update makefile for doc-conformance tests

--

wpt-commits: 5a792b6bf4e0d39f2b65301b592dffffa8bd9b15
wpt-pr: 13730
This commit is contained in:
Michael[tm] Smith 2018-11-09 15:47:32 +00:00 коммит произвёл moz-wptsync-bot
Родитель fe935e0a09
Коммит ae80d023ac
2 изменённых файлов: 15 добавлений и 0 удалений

1
testing/web-platform/tests/conformance-checkers/.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1 @@
vnu.jar

Просмотреть файл

@ -9,6 +9,10 @@ GIT=git
GITFLAGS=
PYTHON=python
PYTHONFLAGS=
CURL=curl
CURLFLAGS=
JAVA=java
JAVAFLAGS=
VNU_TEST_REPO=git@github.com:validator/tests.git
ITS_REPO=git@github.com:w3c/its-2.0-testsuite-inputdata.git
.PHONY: .FORCE
@ -24,9 +28,19 @@ README.md: index.html
| $(EXPAND) $(EXPANDFLAGS) > $@
messages.json: .FORCE
$(CURL) $(CURLFLAGS) -O \
https://sideshowbarker.net/nightlies/jar/vnu.jar
$(JAVA) $(JAVAFLAGS) -cp vnu.jar nu.validator.client.TestRunner \
--ignore=html-its --write-messages $@
$(PYTHON) $(PYTHONFLAGS) -mjson.tool $@ > $@.tmp
mv $@.tmp $@
test: .FORCE
$(CURL) $(CURLFLAGS) -O \
https://sideshowbarker.net/nightlies/jar/vnu.jar
$(JAVA) $(JAVAFLAGS) -cp vnu.jar nu.validator.client.TestRunner \
--ignore=html-its messages.json
push:
cd .. \
&& git push $(VNU_TEST_REPO) `git subtree split -P conformance-checkers`:master --force \