[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Thu Jun 2 01:12:11 UTC 2016


The branch master has been updated
       via  a182e546c74aff8ce1a15c7b626fbb428bf0d0f4 (commit)
      from  ade82832cd4b9d990dfdcbfea82e8f2fdd65f45a (commit)


- Log -----------------------------------------------------------------
commit a182e546c74aff8ce1a15c7b626fbb428bf0d0f4
Author: Richard Levitte <levitte at openssl.org>
Date:   Thu Jun 2 02:06:25 2016 +0200

    Testing symbol presence: also take note of small objects
    
    The S symbol class wasn't checked.
    
    Notified by Sebastian Andrzej Siewior
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 test/recipes/01-test_symbol_presence.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t
index 619519c..32827f5 100644
--- a/test/recipes/01-test_symbol_presence.t
+++ b/test/recipes/01-test_symbol_presence.t
@@ -57,7 +57,7 @@ foreach my $libname (@libnames) {
         note "Number of lines in \@def_lines before massaging: ", scalar @def_lines;
 
         # Massage the nm output to only contain defined symbols
-        @nm_lines = sort map { s| .*||; $_ } grep(m|.* [BCDT] .*|, @nm_lines);
+        @nm_lines = sort map { s| .*||; $_ } grep(m|.* [BCDST] .*|, @nm_lines);
 
         # Massage the mkdef.pl output to only contain global symbols
         # The output we got is in Unix .map format, which has a global


More information about the openssl-commits mailing list