This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 289ccae09da Skip tests on IBM JVMs 289ccae09da is described below commit 289ccae09dada79501a898347397f0762639a95f Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sun May 4 10:10:29 2025 +0200 Skip tests on IBM JVMs --- .../src/test/java/org/apache/camel/language/JavaScriptLanguageTest.java | 2 +- .../test/java/org/apache/camel/language/js/JavaScriptChoiceTest.java | 2 +- .../src/test/java/org/apache/camel/language/js/JavaScriptTest.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-javascript/src/test/java/org/apache/camel/language/JavaScriptLanguageTest.java b/components/camel-javascript/src/test/java/org/apache/camel/language/JavaScriptLanguageTest.java index c409b0be9db..9d3ceb4d90a 100644 --- a/components/camel-javascript/src/test/java/org/apache/camel/language/JavaScriptLanguageTest.java +++ b/components/camel-javascript/src/test/java/org/apache/camel/language/JavaScriptLanguageTest.java @@ -23,7 +23,7 @@ import org.junit.jupiter.api.condition.DisabledIfSystemProperty; /** * Ensures that the "js" language is compliant with the typed language expectations. */ -@DisabledIfSystemProperty(named = "java.vendor", matches = ".*ibm.*") +@DisabledIfSystemProperty(named = "java.vendor", matches = "(?i).*ibm.*") class JavaScriptLanguageTest extends AbstractTypedLanguageTest<JavaScriptExpression.Builder, JavaScriptExpression> { JavaScriptLanguageTest() { diff --git a/components/camel-javascript/src/test/java/org/apache/camel/language/js/JavaScriptChoiceTest.java b/components/camel-javascript/src/test/java/org/apache/camel/language/js/JavaScriptChoiceTest.java index db7ab3620e2..98c6b3d75f8 100644 --- a/components/camel-javascript/src/test/java/org/apache/camel/language/js/JavaScriptChoiceTest.java +++ b/components/camel-javascript/src/test/java/org/apache/camel/language/js/JavaScriptChoiceTest.java @@ -23,7 +23,7 @@ import org.apache.camel.test.junit5.CamelTestSupport; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.condition.DisabledIfSystemProperty; -@DisabledIfSystemProperty(named = "java.vendor", matches = ".*ibm.*") +@DisabledIfSystemProperty(named = "java.vendor", matches = "(?i).*ibm.*") public class JavaScriptChoiceTest extends CamelTestSupport { @Test diff --git a/components/camel-javascript/src/test/java/org/apache/camel/language/js/JavaScriptTest.java b/components/camel-javascript/src/test/java/org/apache/camel/language/js/JavaScriptTest.java index 44d09bcdffa..874a162cad2 100644 --- a/components/camel-javascript/src/test/java/org/apache/camel/language/js/JavaScriptTest.java +++ b/components/camel-javascript/src/test/java/org/apache/camel/language/js/JavaScriptTest.java @@ -20,7 +20,7 @@ import org.apache.camel.test.junit5.LanguageTestSupport; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.condition.DisabledIfSystemProperty; -@DisabledIfSystemProperty(named = "java.vendor", matches = ".*ibm.*") +@DisabledIfSystemProperty(named = "java.vendor", matches = "(?i).*ibm.*") public class JavaScriptTest extends LanguageTestSupport { @Test