[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Tue Nov 27 09:03:09 UTC 2018
The branch master has been updated
via f1d49ed94707f5f0799541aa8e528dce67712948 (commit)
from 5a4481f0e0bbf836c7f41805e84617784cb6b1db (commit)
- Log -----------------------------------------------------------------
commit f1d49ed94707f5f0799541aa8e528dce67712948
Author: Richard Levitte <levitte at openssl.org>
Date: Tue Nov 27 07:51:44 2018 +0000
Don't test the collected system errors when configured to not have them
Config options 'no-err' and 'no-autoerrinit'
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Tim Hudson <tjh at openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/7711)
-----------------------------------------------------------------------
Summary of changes:
test/recipes/02-test_errstr.t | 3 +++
1 file changed, 3 insertions(+)
diff --git a/test/recipes/02-test_errstr.t b/test/recipes/02-test_errstr.t
index 745c3c0..ef5e2fa 100644
--- a/test/recipes/02-test_errstr.t
+++ b/test/recipes/02-test_errstr.t
@@ -31,6 +31,9 @@ setup('test_errstr');
plan skip_all => 'This is unsupported for cross compiled configurations'
if config('CROSS_COMPILE');
+plan skip_all => 'OpenSSL is configured "no-autoerrinit" or "no-err"'
+ if disabled('autoerrinit') || disabled('err');
+
# These are POSIX error names, which Errno implements as functions
# (this is documented)
my @posix_errors = @{$Errno::EXPORT_TAGS{POSIX}};
More information about the openssl-commits
mailing list