test/recipes/95-test_*.t : correct skip_all syntax
authorRichard Levitte <levitte@openssl.org>
Sat, 6 May 2017 08:29:16 +0000 (10:29 +0200)
committerRichard Levitte <levitte@openssl.org>
Sat, 6 May 2017 08:29:16 +0000 (10:29 +0200)
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3400)

test/recipes/95-test_external_krb5.t
test/recipes/95-test_external_pyca.t

index 8cfec82239377be03ff016a9f453c014aa15815f..6cc4d268157ea636a28438384e9c83dfc528dd48 100644 (file)
@@ -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;
index 45d6c1b47a840072f9ae120d5d365f0eb87f9640..c1ada99416e234a3b486a68078b4674bc2639637 100644 (file)
@@ -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;