Commit ee8772e356 for openssl.org

commit ee8772e3565a84fde9e23124a76cab8e6f2b3778
Author: Neil Horman <nhorman@openssl.org>
Date:   Sun Jan 4 17:42:33 2026 -0500

    prevent large latency in base64_simdutf test

    The base64_simdutf test has a printf statement inside a double for loop
    that causes a huge amount of latency when run under our perl scripts.
    Average run time on my system is about 1min 58 seconds.

    We shouldn't be using a printf statement there anyway (likely TEST_info
    instead), but we don't need that either, so just remove the printf
    entirely.  This decreases the run time to around a second to complete.

    Reviewed-by: Eugene Syromiatnikov <esyr@openssl.org>
    Reviewed-by: Paul Yang <paulyang.inf@gmail.com>
    Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
    Reviewed-by: Tomas Mraz <tomas@openssl.org>
    Reviewed-by: Matt Caswell <matt@openssl.org>
    Reviewed-by: Paul Dale <paul.dale@oracle.com>
    (Merged from https://github.com/openssl/openssl/pull/29542)

diff --git a/test/test_base64_simdutf.c b/test/test_base64_simdutf.c
index 65c3b747ff..29932eea60 100644
--- a/test/test_base64_simdutf.c
+++ b/test/test_base64_simdutf.c
@@ -174,8 +174,6 @@ static int test_encode_line_lengths_reinforced(void)
         for (int partial_ctx_fill = 0; partial_ctx_fill <= 80;
             partial_ctx_fill += 1) {
             for (int ctx_len = 1; ctx_len <= 80; ctx_len += 1) {
-                printf("Trial %d, input length %d, ctx length %d, partial ctx fill %d\n",
-                    t + 1, inl, ctx_len, partial_ctx_fill);
                 EVP_ENCODE_CTX *ctx_simd = EVP_ENCODE_CTX_new();
                 EVP_ENCODE_CTX *ctx_ref = EVP_ENCODE_CTX_new();