From: Tomas Mraz Date: Thu, 8 Jan 2026 10:40:10 +0000 (+0100) Subject: Rename test_base64_simdutf to base64_simdutf_test X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcc33dfcd9038d46be3bd84b32d14942977f1c38;p=thirdparty%2Fopenssl.git Rename test_base64_simdutf to base64_simdutf_test The new name is better for consistency with other tests. Reviewed-by: Saša Nedvědický Reviewed-by: Paul Dale Reviewed-by: Matt Caswell MergeDate: Mon Jan 19 14:20:35 2026 (Merged from https://github.com/openssl/openssl/pull/29550) --- diff --git a/.gitignore b/.gitignore index b62f232fceb..f5b55b927b3 100644 --- a/.gitignore +++ b/.gitignore @@ -214,7 +214,6 @@ providers/implementations/rands/test_rng.inc /test/evp_pkey_ctx_new_from_name /test/threadstest_fips /test/timing_load_creds -/test/test_base64_simdutf # Demo applications /demos/bio/client-arg diff --git a/test/test_base64_simdutf.c b/test/base64_simdutf_test.c similarity index 100% rename from test/test_base64_simdutf.c rename to test/base64_simdutf_test.c diff --git a/test/build.info b/test/build.info index d12aa672696..25ca119973e 100644 --- a/test/build.info +++ b/test/build.info @@ -55,7 +55,7 @@ IF[{- !$disabled{tests} -}] ssl_test_ctx_test ssl_test x509aux cipherlist_test asynciotest \ bio_callback_test bio_memleak_test bio_core_test bio_dgram_test param_build_test \ bioprinttest sslapitest ssl_handshake_rtt_test dtlstest sslcorrupttest \ - bio_base64_test test_base64_simdutf bio_enc_test pkey_meth_kdf_test evp_kdf_test uitest \ + bio_base64_test bio_enc_test pkey_meth_kdf_test evp_kdf_test uitest \ cipherbytes_test threadstest_fips threadpool_test \ asn1_encode_test asn1_decode_test asn1_string_table_test asn1_stable_parse_test \ x509_time_test x509_dup_cert_test x509_check_cert_pkey_test \ @@ -71,7 +71,7 @@ IF[{- !$disabled{tests} -}] fips_version_test x509_test hpke_test pairwise_fail_test \ nodefltctxtest evp_xof_test x509_load_cert_file_test bio_meth_test \ x509_acert_test x509_req_test strtoultest bio_pw_callback_test \ - engine_stubs_test + engine_stubs_test base64_simdutf_test IF[{- !$disabled{'rpk'} -}] PROGRAMS{noinst}=rpktest @@ -640,10 +640,10 @@ IF[{- !$disabled{tests} -}] INCLUDE[bio_base64_test]=../include ../apps/include DEPEND[bio_base64_test]=../libcrypto libtestutil.a - SOURCE[test_base64_simdutf] = test_base64_simdutf.c - INCLUDE[test_base64_simdutf] = ../include ../apps/include ../crypto/include ../crypto/evp/ - DEPEND[test_base64_simdutf] = ../libcrypto libtestutil.a - + SOURCE[base64_simdutf_test] = base64_simdutf_test.c + INCLUDE[base64_simdutf_test] = ../include ../apps/include ../crypto/include ../crypto/evp/ + DEPEND[base64_simdutf_test] = ../libcrypto libtestutil.a + SOURCE[bio_enc_test]=bio_enc_test.c INCLUDE[bio_enc_test]=../include ../apps/include DEPEND[bio_enc_test]=../libcrypto libtestutil.a diff --git a/test/recipes/90-test_base64_simdutf.t b/test/recipes/90-test_base64_simdutf.t index 7b3790be227..d009a5de94b 100644 --- a/test/recipes/90-test_base64_simdutf.t +++ b/test/recipes/90-test_base64_simdutf.t @@ -8,4 +8,4 @@ use OpenSSL::Test::Simple; -simple_test("b64_simdutf", "test_base64_simdutf", "b64_simdutf"); \ No newline at end of file +simple_test("test_base64_simdutf", "base64_simdutf_test", "base64_simdutf");