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 29f106f7eaae CAMEL-22379: disable tests for s390x architecture (#21366)
29f106f7eaae is described below

commit 29f106f7eaae9ae39122b40f304181a6fbb0c508
Author: Luigi De Masi <[email protected]>
AuthorDate: Mon Feb 9 16:35:07 2026 +0100

    CAMEL-22379: disable tests for s390x architecture (#21366)
---
 .../component/file/remote/mina/integration/MinaSftpPublicKeyAuthIT.java | 2 ++
 .../file/remote/mina/sftp/SftpCertificateAuthenticationIT.java          | 2 ++
 2 files changed, 4 insertions(+)

diff --git 
a/components/camel-mina-sftp/src/test/java/org/apache/camel/component/file/remote/mina/integration/MinaSftpPublicKeyAuthIT.java
 
b/components/camel-mina-sftp/src/test/java/org/apache/camel/component/file/remote/mina/integration/MinaSftpPublicKeyAuthIT.java
index f4e6f3a616b9..7add035a9385 100644
--- 
a/components/camel-mina-sftp/src/test/java/org/apache/camel/component/file/remote/mina/integration/MinaSftpPublicKeyAuthIT.java
+++ 
b/components/camel-mina-sftp/src/test/java/org/apache/camel/component/file/remote/mina/integration/MinaSftpPublicKeyAuthIT.java
@@ -27,6 +27,7 @@ import 
org.apache.camel.component.file.remote.mina.MinaSftpConfiguration;
 import org.apache.camel.component.file.remote.mina.MinaSftpEndpoint;
 import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledOnOs;
 import org.junit.jupiter.api.condition.EnabledIf;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
@@ -35,6 +36,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
 /**
  * Integration tests for public key authentication in MINA SFTP component.
  */
+@DisabledOnOs(architectures = "s390x")
 @EnabledIf(value = 
"org.apache.camel.test.infra.ftp.services.embedded.SftpUtil#hasRequiredAlgorithms('src/test/resources/hostkey.pem')")
 public class MinaSftpPublicKeyAuthIT extends MinaSftpServerTestSupport {
 
diff --git 
a/components/camel-mina-sftp/src/test/java/org/apache/camel/component/file/remote/mina/sftp/SftpCertificateAuthenticationIT.java
 
b/components/camel-mina-sftp/src/test/java/org/apache/camel/component/file/remote/mina/sftp/SftpCertificateAuthenticationIT.java
index 612a8e53a838..37aa59dbb942 100644
--- 
a/components/camel-mina-sftp/src/test/java/org/apache/camel/component/file/remote/mina/sftp/SftpCertificateAuthenticationIT.java
+++ 
b/components/camel-mina-sftp/src/test/java/org/apache/camel/component/file/remote/mina/sftp/SftpCertificateAuthenticationIT.java
@@ -23,6 +23,7 @@ import org.apache.camel.Exchange;
 import org.apache.camel.component.file.remote.mina.MinaSftpConfiguration;
 import org.apache.camel.component.file.remote.mina.MinaSftpEndpoint;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledOnOs;
 import org.junit.jupiter.api.condition.EnabledIf;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
@@ -34,6 +35,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
  * These tests verify that certificate authentication works for SFTP 
operations. The embedded server accepts all public
  * keys, so the tests validate that the client correctly loads and uses the 
certificate alongside the private key.
  */
+@DisabledOnOs(architectures = "s390x")
 @EnabledIf(value = 
"org.apache.camel.test.infra.ftp.services.embedded.SftpUtil#hasRequiredAlgorithms('src/test/resources/sftp/hostkey.pem')")
 public class SftpCertificateAuthenticationIT extends SftpServerTestSupport {
 

Reply via email to