]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix a visual glitch in test_cms.t
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Mon, 24 Mar 2025 22:03:16 +0000 (23:03 +0100)
committerPaul Yang <kaishen.yy@antfin.com>
Wed, 26 Mar 2025 11:10:39 +0000 (19:10 +0800)
the newline in the newly added subtest names somehow
creates another small visual glitch in the test output,
that looks like:
80-test_cms.t .. 30/?
80-test_cms.t .. ok

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Yang <kaishen.yy@antfin.com>
(Merged from https://github.com/openssl/openssl/pull/27145)

test/recipes/80-test_cms.t

index fa5376b1f19131b79976740fe8c67d2b3ca7b3a6..5c967c581835a24f7dec672788d5390b6f0475d6 100644 (file)
@@ -1381,7 +1381,7 @@ subtest "encrypt to three recipients with RSA-OAEP, key only decrypt" => sub {
     is(compare($pt, $ptpt), 0, "compare original message with decrypted ciphertext");
 };
 
-subtest "EdDSA tests for CMS \n" => sub {
+subtest "EdDSA tests for CMS" => sub {
     plan tests => 2;
 
     SKIP: {
@@ -1402,7 +1402,7 @@ subtest "EdDSA tests for CMS \n" => sub {
     }
 };
 
-subtest "ML-DSA tests for CMS \n" => sub {
+subtest "ML-DSA tests for CMS" => sub {
     plan tests => 2;
 
     SKIP: {
@@ -1423,7 +1423,7 @@ subtest "ML-DSA tests for CMS \n" => sub {
     }
 };
 
-subtest "SLH-DSA tests for CMS \n" => sub {
+subtest "SLH-DSA tests for CMS" => sub {
     plan tests => 6;
 
     SKIP: {