From ee651fff142c00d5904f2764d12245543eca9f7c Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Mon, 24 Mar 2025 23:03:16 +0100 Subject: [PATCH] Fix a visual glitch in test_cms.t 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 Reviewed-by: Paul Yang (Merged from https://github.com/openssl/openssl/pull/27145) --- test/recipes/80-test_cms.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/recipes/80-test_cms.t b/test/recipes/80-test_cms.t index fa5376b1f19..5c967c58183 100644 --- a/test/recipes/80-test_cms.t +++ b/test/recipes/80-test_cms.t @@ -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: { -- 2.47.2