This is an automated email from the ASF dual-hosted git repository.
acosentino 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 8003838108c enable s390x tests (#16245)
8003838108c is described below
commit 8003838108cfcc3c3c1b6467bfbfa48ff6e30f2d
Author: Sudip Roy <[email protected]>
AuthorDate: Wed Nov 13 16:27:07 2024 +0530
enable s390x tests (#16245)
---
components/camel-jpa/pom.xml | 2 --
.../test/java/org/apache/camel/component/paho/PahoComponentTest.java | 3 ---
2 files changed, 5 deletions(-)
diff --git a/components/camel-jpa/pom.xml b/components/camel-jpa/pom.xml
index bc8bf774d3c..f1f24e0c79f 100644
--- a/components/camel-jpa/pom.xml
+++ b/components/camel-jpa/pom.xml
@@ -32,8 +32,6 @@
<description>Camel JPA support</description>
<properties>
- <!-- Needs to be investigated: crashes on CI on s390x -->
- <skipTests.s390x>true</skipTests.s390x>
<camel.surefire.fork.additional-vmargs>-javaagent:${project.basedir}/target/openjpa-${openjpa-version}.jar
-Xmx3G</camel.surefire.fork.additional-vmargs>
<camel.surefire.forkTimeout>240</camel.surefire.forkTimeout>
</properties>
diff --git
a/components/camel-paho/src/test/java/org/apache/camel/component/paho/PahoComponentTest.java
b/components/camel-paho/src/test/java/org/apache/camel/component/paho/PahoComponentTest.java
index c424a47ff1d..00c095e6df3 100644
---
a/components/camel-paho/src/test/java/org/apache/camel/component/paho/PahoComponentTest.java
+++
b/components/camel-paho/src/test/java/org/apache/camel/component/paho/PahoComponentTest.java
@@ -31,14 +31,11 @@ import org.eclipse.paho.client.mqttv3.MqttMessage;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
-import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.extension.RegisterExtension;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
-@DisabledOnOs(architectures = { "s390x" },
- disabledReason = "This test does not run reliably on s390x")
public class PahoComponentTest extends PahoTestSupport {
@Order(2)