This is an automated email from the ASF dual-hosted git repository. rpopma pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit c30f09318deef97d97d4c9f0e9c82cf9a86546bd Author: Remko Popma <[email protected]> AuthorDate: Tue Apr 26 17:51:00 2022 +0900 LOG4J2-3472 (master) disable flaky test --- .../java/org/apache/logging/log4j/core/config/xml/XmlSchemaTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/xml/XmlSchemaTest.java b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/xml/XmlSchemaTest.java index fa1ffd8433..0020a10fbc 100644 --- a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/xml/XmlSchemaTest.java +++ b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/config/xml/XmlSchemaTest.java @@ -39,6 +39,7 @@ import javax.xml.validation.Validator; import org.apache.commons.io.FileUtils; import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.mutable.MutableInt; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.xml.sax.Attributes; import org.xml.sax.InputSource; @@ -89,6 +90,7 @@ public class XmlSchemaTest { return xml; } + @Disabled @Test public void testXmlSchemaValidation() throws SAXException, IOException { final SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
