Add engine and evp test recipes.

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Richard Levitte 2015-04-17 20:16:13 +02:00
parent 4650de3e43
commit 4fb35f8fcb
3 changed files with 37 additions and 0 deletions

View 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");

View 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");

View 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");