This is an automated email from the ASF dual-hosted git repository.

orpiske 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 786bf176856 (chores) camel-paho: disable unreliable test on s390x
786bf176856 is described below

commit 786bf176856f92cb87a58c894ccba4ad8508cf61
Author: Otavio Rodolfo Piske <angusyo...@gmail.com>
AuthorDate: Sat May 25 14:11:30 2024 +0200

    (chores) camel-paho: disable unreliable test on s390x
---
 .../test/java/org/apache/camel/component/paho/PahoComponentTest.java   | 3 +++
 1 file changed, 3 insertions(+)

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 e27cae20c12..75af9a0bbd9 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
@@ -30,11 +30,14 @@ 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)

Reply via email to