[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Sat May 6 14:41:00 UTC 2017
The branch master has been updated
via 218712ffddfdf3c7574c1d945e094f6601500caa (commit)
from b83ace316282f05d8507561cc8129ec8491caade (commit)
- Log -----------------------------------------------------------------
commit 218712ffddfdf3c7574c1d945e094f6601500caa
Author: Richard Levitte <levitte at openssl.org>
Date: Sat May 6 10:29:16 2017 +0200
test/recipes/95-test_*.t : correct skip_all syntax
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3400)
-----------------------------------------------------------------------
Summary of changes:
test/recipes/95-test_external_krb5.t | 4 ++--
test/recipes/95-test_external_pyca.t | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/test/recipes/95-test_external_krb5.t b/test/recipes/95-test_external_krb5.t
index 8cfec82..6cc4d26 100644
--- a/test/recipes/95-test_external_krb5.t
+++ b/test/recipes/95-test_external_krb5.t
@@ -13,9 +13,9 @@ use OpenSSL::Test qw/:DEFAULT data_file srctop_file/;
setup("test_external_krb5");
-plan skip_all "No external tests in this configuration"
+plan skip_all => "No external tests in this configuration"
if disabled("external-tests");
-plan skip_all "krb5 not available"
+plan skip_all => "krb5 not available"
if ! -f srctop_file("krb5", "README");
plan tests => 1;
diff --git a/test/recipes/95-test_external_pyca.t b/test/recipes/95-test_external_pyca.t
index 45d6c1b..c1ada99 100644
--- a/test/recipes/95-test_external_pyca.t
+++ b/test/recipes/95-test_external_pyca.t
@@ -15,11 +15,11 @@ setup("test_external");
plan skip_all => "No external tests in this configuration"
if disabled("external-tests");
-plan skip_all "PYCA tests not available on Windows or VMS"
+plan skip_all => "PYCA tests not available on Windows or VMS"
if $^O =~ /^(VMS|MSWin32)$/;
-plan skip_all "PYCA Cryptography not available"
+plan skip_all => "PYCA Cryptography not available"
if ! -f srctop_file("pyca-cryptography", "setup.py");
-plan skip_all "PYCA tests only available in a shared build"
+plan skip_all => "PYCA tests only available in a shared build"
if disabled("shared");
plan tests => 1;
More information about the openssl-commits
mailing list