[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Tue Sep 6 06:30:51 UTC 2016
The branch master has been updated
via 77a42b5f177e308233ab108806c48b9590a780e2 (commit)
from 7e5b8b93f2ffa8300b992d2e79c50f0e5266c61b (commit)
- Log -----------------------------------------------------------------
commit 77a42b5f177e308233ab108806c48b9590a780e2
Author: Richard Levitte <levitte at openssl.org>
Date: Tue Sep 6 00:48:13 2016 +0200
Correct detection of group end in map file when testing symbol presence
Reviewed-by: Matt Caswell <matt at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
test/recipes/01-test_symbol_presence.t | 1 +
1 file changed, 1 insertion(+)
diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t
index dbd4b10..7f2a2d7 100644
--- a/test/recipes/01-test_symbol_presence.t
+++ b/test/recipes/01-test_symbol_presence.t
@@ -69,6 +69,7 @@ foreach my $libname (@libnames) {
map { s|;||; s|\s+||g; $_ }
grep { $in_global = 1 if m|global:|;
$in_global = 0 if m|local:|;
+ $in_global = 0 if m|\}|;
$in_global && m|;|; } @def_lines;
note "Number of lines in \@nm_lines after massaging: ", scalar @nm_lines;
More information about the openssl-commits
mailing list