mirror of
https://github.com/openssl/openssl.git
synced 2024-12-25 09:53:52 +08:00
Simplify Simple.pm further, and make it more verbose
Reviewed-by: Stephen Henson <steve@openssl.org>
This commit is contained in:
parent
c9f6be4ead
commit
777ae7c4ee
@ -56,13 +56,12 @@ sub simple_test {
|
||||
|
||||
setup($name);
|
||||
|
||||
plan tests => 1;
|
||||
SKIP: {
|
||||
skip "$algo is not supported by this OpenSSL build, skipping this test...", 1
|
||||
if $algo && disabled($algo);
|
||||
plan skip_all => "$algo is not supported by this OpenSSL build"
|
||||
if $algo && disabled($algo);
|
||||
|
||||
ok(run(test([$prgr])), "running $prgr");
|
||||
}
|
||||
plan tests => 1;
|
||||
|
||||
ok(run(test([$prgr])), "running $prgr");
|
||||
}
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
Loading…
Reference in New Issue
Block a user