eeacf7d0 | 15-Feb-2020 |
Richard Levitte |
TEST: Optionally silence OpenSSL::Test::setup() test/generate_ssl_tests.pl uses OpenSSL::Test to get to some of its practical location functions. A recent note in the setup() code made
TEST: Optionally silence OpenSSL::Test::setup() test/generate_ssl_tests.pl uses OpenSSL::Test to get to some of its practical location functions. A recent note in the setup() code made its result not quite match the original (we do check that), so there's a need to silence setup(), which we do with a simple optional argument. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080)
show more ...
|
a60079c7 | 14-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/tconversion.pl to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
6c93c56c | 14-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/80-test_ssl_old.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
a3f3ed65 | 14-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/80-test_ssl_new.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
acf3360c | 14-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/80-test_ocsp.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
4b3327e7 | 14-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/80-test_cms.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
6469d60e | 14-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/80-test_ca.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
35746c79 | 14-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/20-test_pkeyutl.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
95640f74 | 14-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/20-test_enc_more.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
42f7a489 | 12-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/25-test_x509.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
11920665 | 12-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/25-test_req.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
ebcc3e0a | 12-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/25-test_crl.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
1cf95931 | 12-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/20-test_enc.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
b67d53a5 | 12-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/20-test_dgst.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
c0d49f46 | 12-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/15-test_rsapss.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
4a7234d2 | 12-Feb-2020 |
Richard Levitte |
TEST: Modify test/recipes/15-test_mp_rsa.t to leave artifacts behind Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080) |
f0790d4d | 12-Feb-2020 |
Richard Levitte |
TEST: Create test specific output directories We had all tests run with test/test-runs/ as working directory, and tests cleaned up after themselves... which is well and good, until
TEST: Create test specific output directories We had all tests run with test/test-runs/ as working directory, and tests cleaned up after themselves... which is well and good, until you want to have a look at what went wrong when a complex test fails, and you have to recreate everything it does manually. To remedy this, we have OpenSSL::Test create the result directory dynamically (and cleaning it up first if it's already there) and let the test recipe have that as working directory. Test recipes are now encouraged to name their diverse output files uniquely, and not to clean them up, to allow a developer to have a look at the files that were produced. With continuous integration that allows this, the result directories could also be archived and be left as a build artifact. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11080)
show more ...
|
4e46a7af | 31-Jan-2020 |
Richard Levitte |
DOC: Add documentation related to X509_LOOKUPs Most of all, the base X509_LOOKUP functionality is now documented. Furthermore, the names X509_LOOKUP_METHOD and X509_STORE are added for
DOC: Add documentation related to X509_LOOKUPs Most of all, the base X509_LOOKUP functionality is now documented. Furthermore, the names X509_LOOKUP_METHOD and X509_STORE are added for reference. Some functions were moved from X509_LOOKUP_meth_new.pod Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/10986)
show more ...
|
fbc1f1ec | 08-Feb-2020 |
Richard Levitte |
Fix podchecker warnings Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11045) |
1624ebdb | 08-Feb-2020 |
Richard Levitte |
Make util/find-doc-nits runnable from the build tree Because we generate an increasing number of POD files, some of them end up in the build tree. This makes it difficult for find-doc-n
Make util/find-doc-nits runnable from the build tree Because we generate an increasing number of POD files, some of them end up in the build tree. This makes it difficult for find-doc-nits to work as desired when the build tree is separate from the source tree. The best supported way to make it work in such an environment is to run it from the build tree and let it use the build information from configdata.pm to find all the POD files. To make this smooth enough, we add a function 'files' that returns an array of file names corresponding to criteria from the caller. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/11045)
show more ...
|
86cde318 | 16-Feb-2020 |
Pauli |
ffc: use sizeof(*pointer) instead of sizeof(struct) in memset(3) call. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11101) |
4f94f748 | 16-Feb-2020 |
Pauli |
Coverity 1458438: fix uninitialised memory access. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11101) |
5472821e | 16-Feb-2020 |
Pauli |
Coverity 1458439: fix resource leak Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11101) |
31b28ad9 | 15-Feb-2020 |
Dr. David von Oheimb |
chunk 7 of CMP contribution to OpenSSL add CMP message validation and related tests; while doing so: * add ERR_add_error_mem_bio() to crypto/err/err_prn.c * move ossl_cmp_add_error_t
chunk 7 of CMP contribution to OpenSSL add CMP message validation and related tests; while doing so: * add ERR_add_error_mem_bio() to crypto/err/err_prn.c * move ossl_cmp_add_error_txt() as ERR_add_error_txt() to crypto/err/err_prn.c * add X509_STORE_CTX_print_verify_cb() to crypto/x509/t_x509.c, adding internally x509_print_ex_brief(), print_certs(), and print_store_certs() * move {ossl_cmp_,}X509_STORE_get1_certs() to crypto/x509/x509_lu.c Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/10620)
show more ...
|
235595c4 | 13-Dec-2019 |
Dr. David von Oheimb |
fix various formatting nits in CMP contribution chunks 1-6 found by the new util/check-format.pl in addition: correct wording in doc, comments, and parameter names: self-signed -> self-i
fix various formatting nits in CMP contribution chunks 1-6 found by the new util/check-format.pl in addition: correct wording in doc, comments, and parameter names: self-signed -> self-issued where appropriate Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/10620)
show more ...
|