[openssl] openssl-3.0 update
Richard Levitte
levitte at openssl.org
Thu Oct 14 08:58:58 UTC 2021
The branch openssl-3.0 has been updated
via 1ca2bd42afc584c6eb9d909852d666ae634e638b (commit)
from 5c863749f19c55506fdc63ce6dbaf2523d06297c (commit)
- Log -----------------------------------------------------------------
commit 1ca2bd42afc584c6eb9d909852d666ae634e638b
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Oct 13 09:09:05 2021 +0200
Fix test/recipes/01-test_symbol_presence.t to allow for stripped libraries
It's a small change to the 'nm' call, to have it look at dynamic symbols
rather than the normal ones.
Fixes #16810
Reviewed-by: Tomas Mraz <tomas at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16822)
(cherry picked from commit a85b4de6a6cbe03c46219d4b1c3b2828ca3fd51c)
-----------------------------------------------------------------------
Summary of changes:
test/recipes/01-test_symbol_presence.t | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t
index 4271ac32a3..12ad278e27 100644
--- a/test/recipes/01-test_symbol_presence.t
+++ b/test/recipes/01-test_symbol_presence.t
@@ -48,12 +48,12 @@ foreach my $libname (@libnames) {
*OSTDOUT = *STDOUT;
open STDERR, ">", devnull();
open STDOUT, ">", devnull();
- my @nm_lines = map { s|\R$||; $_ } `nm -Pg $shlibpath 2> /dev/null`;
+ my @nm_lines = map { s|\R$||; $_ } `nm -DPg $shlibpath 2> /dev/null`;
close STDERR;
close STDOUT;
*STDERR = *OSTDERR;
*STDOUT = *OSTDOUT;
- skip "Can't run 'nm -Pg $shlibpath' => $?... ignoring", 2
+ skip "Can't run 'nm -DPg $shlibpath' => $?... ignoring", 2
unless $? == 0;
my $bldtop = bldtop_dir();
More information about the openssl-commits
mailing list