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

janhoy pushed a commit to branch branch_10x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_10x by this push:
     new 65a31454840 Skip ExtractingRequestHandlerTikaServerTest on s390x 
(#3945)
65a31454840 is described below

commit 65a314548408d38d3d004e93209b23807bf8f166
Author: Sudip Roy <[email protected]>
AuthorDate: Wed Dec 17 20:53:22 2025 +0530

    Skip ExtractingRequestHandlerTikaServerTest on s390x (#3945)
    
    * Add architecture check to skip test on s390x
    
    (cherry picked from commit 058f754331a3fd40ba778466c6411e2d029b2a0a)
---
 .../handler/extraction/ExtractingRequestHandlerTikaServerTest.java   | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/solr/modules/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTikaServerTest.java
 
b/solr/modules/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTikaServerTest.java
index 616d1f92bb0..d223960a790 100644
--- 
a/solr/modules/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTikaServerTest.java
+++ 
b/solr/modules/extraction/src/test/org/apache/solr/handler/extraction/ExtractingRequestHandlerTikaServerTest.java
@@ -38,6 +38,11 @@ public class ExtractingRequestHandlerTikaServerTest extends 
ExtractingRequestHan
   @BeforeClass
   @SuppressWarnings("resource")
   public static void beforeClassTika() {
+    // skip this test on s390x
+    Assume.assumeFalse(
+        "Skipping ExtractingRequestHandlerTikaServerTest on s390x",
+        "s390x".equalsIgnoreCase(System.getProperty("os.arch")));
+
     String baseUrl;
     try {
       tika =

Reply via email to