Skip to content

Commit

Permalink
Rearrange test/recipes/95-test_*.t to use skip_all
Browse files Browse the repository at this point in the history
The conditions to skip these recipes entirely don't show in a
non-verbose test harness output.  We prefer to know, so use skip_all,
as it is a little bit more verbose.

[extended tests]

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from #3398)
  • Loading branch information
levitte committed May 5, 2017
1 parent 2db85ac commit b83ace3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 21 deletions.
1 change: 0 additions & 1 deletion test/recipes/95-test_external_boringssl.t
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ setup("test_external_boringssl");

plan skip_all => "No external tests in this configuration"
if disabled("external-tests");

plan skip_all => "BoringSSL runner not detected"
if !$ENV{BORING_RUNNER_DIR};

Expand Down
14 changes: 6 additions & 8 deletions test/recipes/95-test_external_krb5.t
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@ use OpenSSL::Test qw/:DEFAULT data_file srctop_file/;

setup("test_external_krb5");

plan tests => 1;
plan skip_all "No external tests in this configuration"

This comment has been minimized.

Copy link
@multiSnow

multiSnow May 6, 2017

missing => after skip_all, cause syntax error.

This comment has been minimized.

Copy link
@levitte

levitte May 6, 2017

Author Member

Thanks, corrective PR here: #3400

if disabled("external-tests");
plan skip_all "krb5 not available"
if ! -f srctop_file("krb5", "README");

SKIP: {
skip "No external tests in this configuration", 1
if disabled("external-tests");
skip "krb5 not available", 1
if ! -f srctop_file("krb5", "README");
plan tests => 1;

ok(run(cmd([data_file("krb5.sh")])), "running krb5 tests");
}
ok(run(cmd([data_file("krb5.sh")])), "running krb5 tests");
20 changes: 8 additions & 12 deletions test/recipes/95-test_external_pyca.t
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,14 @@ 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"
if $^O =~ /^(VMS|MSWin32)$/;
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"
if disabled("shared");

plan tests => 1;

SKIP: {
skip "PYCA Cryptography not available", 1
if ! -f srctop_file("pyca-cryptography", "setup.py");
skip "PYCA tests not available on Windows or VMS", 1
if $^O =~ /^(VMS|MSWin32)$/;
skip "PYCA tests only available in a shared build", 1
if disabled("shared");

ok(run(cmd(["sh", data_file("cryptography.sh")])),
"running Python Cryptography tests");
}

ok(run(cmd(["sh", data_file("cryptography.sh")])),
"running Python Cryptography tests");

0 comments on commit b83ace3

Please sign in to comment.