Add engine and evp test recipes.
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
4650de3e43
commit
4fb35f8fcb
3 changed files with 37 additions and 0 deletions
12
test/recipes/30-test_engine.t
Normal file
12
test/recipes/30-test_engine.t
Normal file
|
@ -0,0 +1,12 @@
|
|||
#! /usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Test::More;
|
||||
use OpenSSL::Test;
|
||||
|
||||
setup("test_engine");
|
||||
|
||||
plan tests => 1;
|
||||
ok(run(test(["enginetest"])), "running enginetest");
|
13
test/recipes/30-test_evp.t
Normal file
13
test/recipes/30-test_evp.t
Normal file
|
@ -0,0 +1,13 @@
|
|||
#! /usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Test::More;
|
||||
use OpenSSL::Test qw/:DEFAULT top_file/;
|
||||
|
||||
setup("test_evp");
|
||||
|
||||
plan tests => 1;
|
||||
ok(run(test(["evp_test", top_file("test", "evptests.txt")])),
|
||||
"running evp_test evptests.txt");
|
12
test/recipes/30-test_evp_extra.t
Normal file
12
test/recipes/30-test_evp_extra.t
Normal file
|
@ -0,0 +1,12 @@
|
|||
#! /usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Test::More;
|
||||
use OpenSSL::Test;
|
||||
|
||||
setup("test_evp_extra");
|
||||
|
||||
plan tests => 1;
|
||||
ok(run(test(["evp_extra_test"])), "running evp_extra_test");
|
Loading…
Reference in a new issue