Skip to content

Commit

Permalink
test/recipes/03-test_internal_*: call setup() first.
Browse files Browse the repository at this point in the history
Strawberry Perl bailed out running test\run_tests.pl insisting on
setup() being called explicitly.

Reviewed-by: Richard Levitte <[email protected]>
  • Loading branch information
Andy Polyakov committed Mar 15, 2017
1 parent a5bb1aa commit b3068d0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/recipes/03-test_internal_asn1.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ use OpenSSL::Test; # get 'plan'
use OpenSSL::Test::Simple;
use OpenSSL::Test::Utils;

setup("test_internal_asn1");

plan skip_all => "This test is unsupported in a shared library build on Windows"
if $^O eq 'MSWin32' && !disabled("shared");

Expand Down
2 changes: 2 additions & 0 deletions test/recipes/03-test_internal_chacha.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ use OpenSSL::Test; # get 'plan'
use OpenSSL::Test::Simple;
use OpenSSL::Test::Utils;

setup("test_internal_chacha");

plan skip_all => "This test is unsupported in a shared library build on Windows"
if $^O eq 'MSWin32' && !disabled("shared");

Expand Down
2 changes: 2 additions & 0 deletions test/recipes/03-test_internal_modes.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ use OpenSSL::Test; # get 'plan'
use OpenSSL::Test::Simple;
use OpenSSL::Test::Utils;

setup("test_internal_modes");

plan skip_all => "This test is unsupported in a shared library build on Windows"
if $^O eq 'MSWin32' && !disabled("shared");

Expand Down
2 changes: 2 additions & 0 deletions test/recipes/03-test_internal_poly1305.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ use OpenSSL::Test; # get 'plan'
use OpenSSL::Test::Simple;
use OpenSSL::Test::Utils;

setup("test_internal_poly1305");

plan skip_all => "This test is unsupported in a shared library build on Windows"
if $^O eq 'MSWin32' && !disabled("shared");

Expand Down
2 changes: 2 additions & 0 deletions test/recipes/03-test_internal_siphash.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ use OpenSSL::Test; # get 'plan'
use OpenSSL::Test::Simple;
use OpenSSL::Test::Utils;

setup("test_internal_siphash");

plan skip_all => "This test is unsupported in a shared library build on Windows"
if $^O eq 'MSWin32' && !disabled("shared");

Expand Down
2 changes: 2 additions & 0 deletions test/recipes/03-test_internal_x509.t
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ use OpenSSL::Test; # get 'plan'
use OpenSSL::Test::Simple;
use OpenSSL::Test::Utils;

setup("test_internal_x509");

plan skip_all => "This test is unsupported in a shared library build on Windows"
if $^O eq 'MSWin32' && !disabled("shared");

Expand Down

0 comments on commit b3068d0

Please sign in to comment.