summaryrefslogtreecommitdiff
path: root/Resources/Libraries/luaunit/junitxml/Makefile
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-26 11:32:46 +0800
committerchai <chaifix@163.com>2021-10-26 11:32:46 +0800
commit0549b1e5a8a3132005e275d6026db8003cb067d2 (patch)
treef0d7751ec32ecf5c4d23997fa0ffd3450a5a755a /Resources/Libraries/luaunit/junitxml/Makefile
parent32345800737b668011a87328cd3dcce59ec2934c (diff)
*rename folder
Diffstat (limited to 'Resources/Libraries/luaunit/junitxml/Makefile')
-rw-r--r--Resources/Libraries/luaunit/junitxml/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/Resources/Libraries/luaunit/junitxml/Makefile b/Resources/Libraries/luaunit/junitxml/Makefile
deleted file mode 100644
index 9679016..0000000
--- a/Resources/Libraries/luaunit/junitxml/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-#
-# 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