This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/commons-xml.git
The following commit(s) were added to refs/heads/main by this push:
new 90dbedc Disable a failing test on Android and Graalvm
90dbedc is described below
commit 90dbedc96e9ed0e80d01d2fb36ae759d8690f205
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 30 12:18:23 2026 -0400
Disable a failing test on Android and Graalvm
---
src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java
b/src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java
index 327846f..ac2bf3b 100644
--- a/src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java
+++ b/src/test/java/org/apache/commons/xml/SecureTransformerFactoryTest.java
@@ -45,6 +45,7 @@
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledIfSystemProperty;
import org.xml.sax.InputSource;
import org.xml.sax.XMLFilter;
@@ -206,6 +207,7 @@ void
securesAssociatedStylesheetSourcesOfEverySupportedShape() throws Exception
}
@Test
+ @DisabledIfSystemProperty(named = "env.target", matches =
"android|graalvm") // TODO Who knows!
void wrapsEveryStandardAndSaxFactoryProduct() throws Exception {
final SAXTransformerFactory factory = (SAXTransformerFactory)
SecureTransformerFactory.newInstance();
final URIResolver resolver = (href, base) -> null;