aboutsummaryrefslogtreecommitdiffstats
path: root/test/recipes/80-test_ca.t
Commit message (Collapse)AuthorAgeFilesLines
* Fix test/recipes/80-test_ca.t to work on VMSRichard Levitte2016-01-131-2/+4
| | | | | | | | | | | VMS uses a variant of openssl.cnf named openssl-vms.cnf. There's a Perl on VMS mystery where a open pipe will not SIGPIPE when the child process exits, which means that a loop sending "y\n" to it will never stop. Adding a counter helps fix this (set to 10, we know that none of the CA.pl commands will require more). Reviewed-by: Rich Salz <rsalz@openssl.org>
* Replace "SSLeay" in API with OpenSSLRich Salz2015-10-301-3/+3
| | | | | | | All instances of SSLeay (any combination of case) were replaced with the case-equivalent OpenSSL. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Make sure that 80-test_ca.t finds all the config filesRichard Levitte2015-09-071-2/+2
| | | | | | | This recipe counted too much on being called with test/ as its current working directory. That's a mistake on, for example, Windows. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Change OpenSSL::Test to be an extension of Test::MoreRichard Levitte2015-09-071-1/+0
| | | | | | | | | | | It became tedious as well as error prone to have all recipes use Test::More as well as OpenSSL::Test. The easier way is to make OpenSSL::Test an extension of Test::More, thereby having all version checks as well as future checks firmly there. Additionally, that allows us to extend existing Test::More functions if the need would arise. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add version numbers on some modules we use.Richard Levitte2015-09-071-2/+2
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add recipes for the larger protocolsRichard Levitte2015-09-071-0/+55
This covers the certificate authority commands, the cms and smime commands, OCSP, SSL and TSA. Reviewed-by: Rich Salz <rsalz@openssl.org>