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 764269a5f18 Skip tests on s390 and power
764269a5f18 is described below
commit 764269a5f182a0cbac8d8dfbf8616f68984cc1ce
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon May 5 07:15:21 2025 +0200
Skip tests on s390 and power
---
.../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 9d3ceb4d90a..c8bb84c959e 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 = "(?i).*ibm.*")
+@DisabledIfSystemProperty(named = "os.arch", matches = "(?i)(s390x|ppc64le)")
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 98c6b3d75f8..8346fc154da 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 = "(?i).*ibm.*")
+@DisabledIfSystemProperty(named = "os.arch", matches = "(?i)(s390x|ppc64le)")
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 874a162cad2..07b33f5ab13 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 = "(?i).*ibm.*")
+@DisabledIfSystemProperty(named = "os.arch", matches = "(?i)(s390x|ppc64le)")
public class JavaScriptTest extends LanguageTestSupport {
@Test