From 0549b1e5a8a3132005e275d6026db8003cb067d2 Mon Sep 17 00:00:00 2001 From: chai Date: Tue, 26 Oct 2021 11:32:46 +0800 Subject: *rename folder --- Data/Libraries/luaunit/junitxml/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Data/Libraries/luaunit/junitxml/Makefile (limited to 'Data/Libraries/luaunit/junitxml/Makefile') diff --git a/Data/Libraries/luaunit/junitxml/Makefile b/Data/Libraries/luaunit/junitxml/Makefile new file mode 100644 index 0000000..9679016 --- /dev/null +++ b/Data/Libraries/luaunit/junitxml/Makefile @@ -0,0 +1,17 @@ +# +# junitxml/Makefile +# + +XMLLINT ?= xmllint +TEST_APACHE = --noout --schema junit-apache-ant.xsd +TEST_JENKINS = --noout --schema junit-jenkins.xsd + +validate-examples: validate-apache validate-jenkins + +# This example file is the only one that satisfies the Apache schema +validate-apache: example-apache-ant.xml + $(XMLLINT) $(TEST_APACHE) $< + +# The Jenkins schema is more relaxed, and should apply to all .xml files +validate-jenkins: $(wildcard *.xml) + for file in $^; do $(XMLLINT) $(TEST_JENKINS) $$file || exit 1; done -- cgit v1.1-26-g67d0