summaryrefslogtreecommitdiff
path: root/regress/lib
AgeCommit message (Collapse)Author
2021-05-04Rename shutdown_all() to shutdown_peers() for consistency.Theo Buehler
2021-05-03Use limits.h instead of sys/limits.h in dtlstest.c for portableKinichiro Inoguchi
discussed and input from jsing@
2021-05-03Modify regress ssl_get_shared_ciphers for portableKinichiro Inoguchi
- Split out the intermediate path (../certs/) to Makefile - Change 'shutdown' to 'shutdown_all' ok tb@
2021-05-03Hook openssl-ruby test to regress treeTheo Buehler
2021-05-03Add scaffold to run the ruby/openssl regression testsTheo Buehler
This test depends on the ruby/ruby-openssl-tests port that bundles the sources and tests of the Ruby OpenSSL gem below /usr/local. The Makefile compiles the openssl.so shared object below obj/ that provides Ruby bindings for the OpenSSL API. Once this is built, the regression tests are run. There are currently 4 failing tests, all related to the new verifier. At least one libssl bug is hidden behind a pend. All this will hopefully be fixed during this release cycle. This adds a decent amount of test coverage without being overly expensive. This way, regressions should be spotted during development so jeremy will no longer have to chase and work around them. Joint work with jeremy, positive feedback from bcook and jsing.
2021-05-03tweak one description to make it uniqueTheo Buehler
2021-05-03Prefix the hybrid_corner_case test with test_ for consistency.Theo Buehler
2021-05-03Exercise the point conversion bit for octet string representationsTheo Buehler
of points on secp256r1.
2021-05-03Add a test that exercises the point conversion bit of the octetTheo Buehler
string representations of points on the binary curve sect571k1.
2021-05-01Expand the regress test quite a bit to make sure no new regressions areMartijn van Duren
introduced by the previous libagentx commit. There's a few of the new tests failing, mark those as such.
2021-04-27Relax SAN DNSname validation and constraints to permit non leading *Bob Beck
wildcards. While we may choose not to support them the standards appear to permit them optionally so we can't declare a certificate containing them invalid. Noticed by jeremy@, and Steffan Ulrich and others. Modify the regression tests to test these cases and not check the SAN DNSnames as "hostnames" anymore (which don't support wildcards). ok jsing@, tb@
2021-04-23Enable test-renegotiation-changed-clienthello.py but skipTheo Buehler
"drop extended_master_secret in renegotiation" since we don't support this extension.
2021-04-21Add a test that roundtrips a bunch of points on all builtin curvesTheo Buehler
via point2oct and oct2point and that checks the corner case in hybrid encoding that was fixed in ec2_oct.c r1.13.
2021-04-20Adjust ectest.c for set_compressed_coordinatesTheo Buehler
2021-04-20Adjust ectest.c for get_Jprojective coordinate changeTheo Buehler
2021-04-20Adjust ecdhtest.c for affine_coordinates changeTheo Buehler
2021-04-20Adjust ectest.c for affine_coordinates changeTheo Buehler
2021-04-20Adjust ectest.c for EC_GROUP_{g,s}et_curve changeTheo Buehler
2021-04-20Properly shutdown on connection loss instead of crashing.Martijn van Duren
Found by bluhm@ while playing with setting noclose to 1 for daemon(3): Also included in this commit OK bluhm@
2021-04-20Don't overwrite environment CFLAGS.Martijn van Duren
OK bluhm@
2021-04-19The powerpc64 ELFv2 ABI explicitly states that exception enable bitsMark Kettenis
and rounding control bits are not restored by longjmp(3). So expect the some failures on that platform. ok bluhm@
2021-04-14revert previous. some of the keyupdate tests still fail occasionallyTheo Buehler
2021-04-14Enable test-tls13-keyupdate.pyTheo Buehler
2021-04-14move test-record-size-limit.py to unsupportedTheo Buehler
2021-04-14enable test-record-layer-fragmentation.pyTheo Buehler
2021-04-14factor argument to catch an alert mismatch into a helper functionTheo Buehler
2021-04-13enable test-tlsfuzzer-invalid-compression-methods.pyTheo Buehler
2021-04-13enable test-large-hello.py as a slow testTheo Buehler
2021-04-13with new defaults, test-fuzzed-plaintext.py is no longer slowTheo Buehler
2021-04-13move a few tests to the unsupported group and fix two commentsTheo Buehler
2021-04-13annotate test-ecdhe-rsa-key-exchange-with-bad-messages.py with expectedTheo Buehler
alerts and where to add them.
2021-04-08Enable test-cve-2016-6309.pyTheo Buehler
2021-04-07Use ERR_print_error_fp() to avoid leaking a BIO in fatal()Theo Buehler
2021-04-06use errx() instead of err()Theo Buehler
2021-04-06spaces -> tabsTheo Buehler
2021-04-06minor style tweaksTheo Buehler
2021-04-04Add missing error check for AES_unwrap_key().Theo Buehler
2021-04-04Fix two copy paste errors in error messagesTheo Buehler
2021-04-04Add tests for DTLSv1_2{,_client,_server}_method()Theo Buehler
2021-04-04Use correct type for tmp in test_write_bytes()Theo Buehler
2021-04-04Explicitly NULL pointers to avoid a double free.Theo Buehler
2021-04-04Don't leak key and dh in the error path.Theo Buehler
2021-04-04Clean up client and server tls{,_config} contexts in tls_test().Theo Buehler
Leaks reported by Ilya Shipitsin.
2021-04-03Run the CMAC tests through EVP_PKEY_new_CMAC_key().Theo Buehler
2021-04-02Two cases of BRE involving counts and backrefs that go wrong andOtto Moerbeek
similar that have no isssues. Reported by Michael Paoli. Failing cases commented out for now.
2021-03-31Remove workaround for missing d2i_DSAPrivateKey_fp prototypeTheo Buehler
2021-03-29Add regress coverage for TLSv1.2 record number increment.Joel Sing
2021-03-28The failure mode of test-tls13-version-negotiation.py has changed.Theo Buehler
Update comment.
2021-03-27Enable test-sig-algs-renegotiation-resumption.py.Theo Buehler
This test covers various scenarios with renegotiation and session resumption. In particular it crashes the OpenSSL 1.1.1j server due to the sigalg NULL deref fixed this week. We need --sig-algs-drop-ok since we do not currently implement signature_algorithms_cert.
2021-03-27Handle dynamic definition of SIGSTKSZ as of glibc 2.34 on Linux.Brent Cook
ok bluhm@, inoguchi@, tb@, deraadt@