This website requires JavaScript.
Explore
Help
Sign in
wbrawner
/
openssl
Watch
1
Star
0
Fork
You've already forked openssl
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
Actions
4ada8be2a6
openssl
/
test
/
recipes
/
15-test_dh.t
6 lines
86 B
Perl
Raw
Normal View
History
Unescape
Escape
Add asymetric cipher test recipes Some of them make use of recipes/tconversion.pl. Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-04-17 18:13:58 +00:00
#! /usr/bin/perl
Simplify very simple test recipes further. Very simple test recipes easily become tedious, so they might benefit from being made as simple as possible. Therefore, OpenSSL::Test::Simple is born. It currently provides but one function, simple_test(), which takes a minimum of two parameters (test name and program to run), with the optional third, being the algorithm to be checked for before running the test itself. All recipes with that simple thing to do have been rewritten to be as minimal as possible. Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-04-21 17:29:01 +00:00
use
OpenSSL::Test::Simple
;
Add asymetric cipher test recipes Some of them make use of recipes/tconversion.pl. Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-04-17 18:13:58 +00:00
Simplify very simple test recipes further. Very simple test recipes easily become tedious, so they might benefit from being made as simple as possible. Therefore, OpenSSL::Test::Simple is born. It currently provides but one function, simple_test(), which takes a minimum of two parameters (test name and program to run), with the optional third, being the algorithm to be checked for before running the test itself. All recipes with that simple thing to do have been rewritten to be as minimal as possible. Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-04-21 17:29:01 +00:00
simple_test
(
"test_dh"
,
"dhtest"
,
"dh"
)
;
Reference in a new issue
Copy permalink