summaryrefslogtreecommitdiff
path: root/regress
AgeCommit message (Collapse)Author
2022-04-04Include license rather than referring to it. Text fromTheo Buehler
https://chromium.googlesource.com/chromium/src/+/refs/heads/main/LICENSE
2022-04-03Initialize the mutex before making us of it from many threads. PreventsAnton Lindqvist
a race in which one thread is currently initializing the mutex which is not an atomic operation whereas another thread tries to use it too early. With and ok schwarze@
2022-04-02Adjust test code after addition of cert_parse_pre and change to cert_parseClaudio Jeker
and ta_parse. Reminder from tb@
2022-03-31Check EVPDigest* return values.Theo Buehler
CID 351293
2022-03-31regression test for sftp cp commandDamien Miller
2022-03-30Add a simple test to ensure that pmeth->cleanup() can cope with NULLTheo Buehler
pkey_ctx->data.
2022-03-30Remove double slash in path to test program.Anton Lindqvist
2022-03-30Flag the kq-tun regress test as skipped as opposed of only mentioning itAnton Lindqvist
in a comment. Allows my own regress runner (and bluhm's) to highlight kqueue as having skipped tests. While here, get rid of redundant usage of phony.
2022-03-29Add Eric Biggers's reproducer for the memory corruption withTheo Buehler
the Z_DEFAULT_STRATEGY.
2022-03-29Of the enabled tests only kq-pty-1 needs root, so reduceTheo Buehler
REGRESS_ROOT_TARGTES and remove ${SUDO} from kq-pty-2. kq-tun also needs root, but it isn't run. discussed with and ok millert
2022-03-29Regression test for NOTE_EXIT being delivered before child is waitable.Todd C. Miller
2022-03-29Add Google Chromium tests for libz bugs. Write a minimal wrapperAlexander Bluhm
to avoid importing GoogleTest, Google's C++ test framework.
2022-03-28Print OK after all of the RRDP related tests. To make it clear thatClaudio Jeker
the regress test was successful.
2022-03-25Now that syslogd(8) supports SSL shutdown when the TLS connectionAlexander Bluhm
terminates, do SSL shutdown in the test client. This will detect SSL handshake errors also with TLS 1.3 if the CA of the client certificate is invalid. test races reported by anton@; debugged with Carsten Arzig
2022-03-24Link libz into regress build.Alexander Bluhm
2022-03-24Import upstream madler/zlib test files and run them with our libz.Alexander Bluhm
2022-03-24Adjust the signer test to link statically and work with hidden tls_signerTheo Buehler
API.
2022-03-23Add subdir gnu/lib to regress.Alexander Bluhm
2022-03-23Simplify logic for skipping libexecinfo unwind test. It works onAlexander Bluhm
clang archs except armv7.
2022-03-23Ensure that pf regress anchor exists before clearing it.Alexander Bluhm
2022-03-22Adjust test after the change to TAILQ in struct prefix.Claudio Jeker
2022-03-19Revise regress for ascii/text to ASN.1 object conversion rewrite.Joel Sing
2022-03-19Add another invalid separator test case.Joel Sing
2022-03-19mark injection fault test as okay to fail, since this case no longerMarc Espie
creates temp files with the current optimization.
2022-03-16Fix dependency to build bn_mod_sqrt.Alexander Bluhm
2022-03-15Check BIO_reset() return value to make gcc happy.Theo Buehler
2022-03-15Add a simple regress to verify that the infinite loop in BN_mod_sqrt()Theo Buehler
is fixed.
2022-03-15Fix build after recent IKEv2 message fragment retransmit change.Tobias Heider
Found by anton@
2022-03-15Add a test for expanding macros in large-community strings.Claudio Jeker
2022-03-14Add a few regress test cases for name constraints.Theo Buehler
From Alex Wilson
2022-03-14Increase timeout to make test pass on sparc64.Alexander Bluhm
2022-03-11Check for underflow as well as overflow when scaling negative numbers.Darren Tucker
ok millert@
2022-03-10Simple regress for NULL deref reported by Guido Vranken and fixed inTheo Buehler
bn_exp2.c r1.13.
2022-03-08Add a sleep when starting the bgpd daemons so that there is less chanceClaudio Jeker
for a connection collision.
2022-03-08Some more c99 initializers for consistency and readabilityTheo Buehler
2022-03-08Start bgpd in rdomain 1 a bit earlier to avoid session establishmentClaudio Jeker
conflicts.
2022-03-05Add test coverage for i2a_ASN1_OBJECT()Joel Sing
2022-03-04Make the regress test more reliable by starting the bgpd instances furtherClaudio Jeker
apart from each other. bgpd's connection collision avoidance is not optimal and in that case the regress test timeous out before the session is up.
2022-03-03Stub rde_send_kroute() reminded by tb@Claudio Jeker
2022-03-02Provide additional ASN1_OBJECT test coverage.Joel Sing
2022-03-01ci(1) populates the author keyword using getlogin(2), therefore favorAnton Lindqvist
logname(1) when normalizing the output.
2022-02-26Allow pledged pf ioctl test to pass also when pf is disabled.Alexander Bluhm
2022-02-26Add regress coverage for ASN1_OBJECT public interfaces.Joel Sing
2022-02-24Regen most of the config output. With support for alternating ports theClaudio Jeker
moment when the default listeners are added to the config got moved into parse_config() and so is now visible in the printed config. Showing the listen on statements is probably a good thing. Failure noticed by anton@
2022-02-23Prints in iked fuzzer fill 77% of full regress output. Nobody wantsAlexander Bluhm
to see 23.2 MB text output unless when debugging a failure. And then a logfile is better than stderr. OK claudio@
2022-02-23Interface index 1 doesn't need to have an lladdr.Martijn van Duren
Found by anton@ who has enc0 on index 1 on his arm64 regress machine. with and OK anton@
2022-02-22The fuzzer logs everything to syslog, this is not what we want.Claudio Jeker
Call log_init() and set debug but clear verbose afterwards with log_setverbose(0) still the fuzzer is very verbose. OK millert@ some time ago
2022-02-22Bump the number of wait_until iterations, in the hopes of making theAnton Lindqvist
tests less flaky.
2022-02-21vxlan sending to a mcast group needs an interface specified for that groupDavid Gwynne
ok anton@
2022-02-20Test OBJ_obj2txt() with NULL and short buffers.Joel Sing