Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-14 | Prevent silly states via knotes on pids > 2^32 and on nonexistent signals. | Philip Guenther | |
ok tedu@ | |||
2016-07-14 | Correct equal in test. | Darren Tucker | |
2016-07-13 | Fix usage() output and getopt sorting | Philip Guenther | |
2016-07-12 | Link path MTU discovery regress test into build. | Alexander Bluhm | |
2016-07-12 | Allow to run the syslogd tests as root without SUDO also if the | Alexander Bluhm | |
libevent method environment is set. | |||
2016-07-12 | Add regression tests for syslogd TLS client certificates. | Alexander Bluhm | |
2016-07-11 | Revert previous adaption of the test. The behavior change in libtls | Alexander Bluhm | |
has been backed out. | |||
2016-07-11 | Add regression tests for the path MTU discovery implementation in | Alexander Bluhm | |
the kernel. Generate TCP and TCP6 and UDP6 packets with Scapy, check the kernel's reaction to ICMP fragmentation needed and ICMP6 packet too big. OK mpi@ | |||
2016-07-07 | add ca cert error check and make the path configurable | Brent Cook | |
from Kinichiro Inoguchi | |||
2016-07-06 | Now libtls is always reading cert.pem during tls_config_new(). | Alexander Bluhm | |
Adapt ktrace count in syslogd test. | |||
2016-07-05 | Some new tests related to bin/cat.c rev. 1.25, | Ingo Schwarze | |
from Sevan Janiyan <venture37 at geeklan dot co dot uk>. | |||
2016-07-05 | remove extra assignment of s from 1.11, fix regression test | Brent Cook | |
2016-07-05 | On systems where we do not have BN_ULLONG defined (most 64-bit systems), | Brent Cook | |
BN_mod_word() can return incorrect results if the supplied modulus is too big, so we need to fall back to BN_div_word. Now that BN_mod_word may fail, handle errors properly update the man page. Thanks to Brian Smith for pointing out these fixes from BoringSSL: https://boringssl.googlesource.com/boringssl/+/67cb49d045f04973ddba0f92fe8a8ad483c7da89 https://boringssl.googlesource.com/boringssl/+/44bedc348d9491e63c7ed1438db100a4b8a830be ok beck@ | |||
2016-07-05 | make less awful.. test against cloudflare too | Bob Beck | |
2016-07-04 | Add a nasty little ocsp regress test in the hope pedants will make it better. | Bob Beck | |
2016-07-04 | DEBUGLIBS has been broken since the gcc4 switch, so delete it. CFLAGS | Philip Guenther | |
contains -g by default anyway problem noted by Edgar Pettijohn (edgar (at) pettijohn-web.com) ok millert@ kettenis@ deraadt@ | |||
2016-07-01 | Timing changed, now a syslogd test may get EPIPE instead of | Alexander Bluhm | |
ECONNREFUSED error. | |||
2016-06-30 | Remove flags for disabling constant-time operations. | Brent Cook | |
This removes support for DSA_FLAG_NO_EXP_CONSTTIME, DH_FLAG_NO_EXP_CONSTTIME, and RSA_FLAG_NO_CONSTTIME flags, making all of these operations unconditionally constant-time. Based on the original patch by César Pereid. ok beck@ | |||
2016-06-22 | Syslogd can send messages to a user, test what happens if the | Alexander Bluhm | |
terminal is blocking to receive messages. Stop the fake user terminal and look for a delayed write debug message from syslogd. This makes the test more reliable. | |||
2016-06-13 | Test that splicing loops are aborted with ELOOP. | Alexander Bluhm | |
2016-06-07 | Replace (remaining) systrace policy files with columns of numbers for | Okan Demirmen | |
the tab spacing regression test; from Ray Lai. | |||
2016-06-07 | Adapt compat layers after recent changes: srp_swap() and the GC task | Martin Pieuchot | |
for ART. | |||
2016-06-03 | Add a test for ssh(1)'s config file parsing. | Darren Tucker | |
2016-06-03 | Add 'sshd' to the test ID as I'm about to add a similar set for ssh. | Darren Tucker | |
2016-06-01 | Add detailed error messages and restructure to make the individual | Ingo Schwarze | |
test functions shorter and easier to understand. The total number of lines remains unchanged. | |||
2016-06-01 | Test history_get() return value; | Ingo Schwarze | |
from Bastian Maerkisch <bmaerkisch at web dot de>. | |||
2016-05-31 | Replace most of the tests based on systrace output; from Ray. | Okan Demirmen | |
2016-05-31 | The argument of remove_history() only counts existing entries, | Ingo Schwarze | |
not those that were previously deleted. | |||
2016-05-31 | Style unification and whitespace cleanup, in part suggested by | Ingo Schwarze | |
Christian Heckendorf. No functional change. | |||
2016-05-30 | Gix misleading indent pointed out by GCC 6.1. | Brent Cook | |
ok beck@ jsing@ | |||
2016-05-30 | Some tests for \<; will be fixed by martijn@'s upcoming commit to process.c | Ingo Schwarze | |
2016-05-30 | stricter malloc.conf(5) options for utf8 tests | Ingo Schwarze | |
2016-05-30 | Fix two rare edge cases: | Ingo Schwarze | |
1. If vasprintf() returns < 0, do not access a NULL pointer in snmprintf(), and do not free() the pointer returned from vasprintf() because on some systems other than OpenBSD, it might be a bogus pointer. 2. If vasprintf() returns == 0, return 0 and "" rather than -1 and NULL. Besides, free(dst) is pointless after failure (not a bug). One half OK martijn@, the other half OK deraadt@; committing quickly before people get hurt. | |||
2016-05-29 | Nuke sigret.c | Bob Beck | |
ok deraadt@ kettenis@ | |||
2016-05-29 | We don't have sigreturn anymore | Bob Beck | |
2016-05-29 | When connecting to a non existing tcp listen socket on localhost, | Alexander Bluhm | |
connect(2) does no longer fail immediately. It reports EINPROGRESS first, an ECONNREFUSED or EPIPE error follows later. Allow this changed behavior in syslogd(8) regression tests. | |||
2016-05-28 | comment typos | Stuart Henderson | |
2016-05-26 | test the new utf8 module | Ingo Schwarze | |
2016-05-26 | tests for the two segfaults in backref() that were just fixed | Ingo Schwarze | |
2016-05-26 | Fix an oversight that caused the test program to segfault: | Ingo Schwarze | |
Don't try to calculate strlen(NULL). | |||
2016-05-26 | systematically test all combinations of REG_STARTEND, REG_NEWLINE, | Ingo Schwarze | |
and REG_NOTBOL with line and word anchors | |||
2016-05-26 | support for testing REG_STARTEND together with REG_NOTBOL | Ingo Schwarze | |
2016-05-25 | deal with the el_errno -> read_errno cleanup, read.c rev. 1.43 | Ingo Schwarze | |
2016-05-23 | UTF-8 support. | Ingo Schwarze | |
Using feedback about bugs in earlier versions from Matthew Martin <phy1729 at gmail dot com> and from tsg@ who tested it with afl(1). OK czarkoff@ tsg@ | |||
2016-05-22 | cope with simplified chared/read interface | Ingo Schwarze | |
2016-05-22 | Fix tests: Restrict getpid() to lower 16 bit so that it can still | Alexander Bluhm | |
be used as packet id. Now scapy calls nexthopmtu with this name explicitly in icmp structure. | |||
2016-05-13 | no more hppa64; | Jason McIntyre | |
2016-05-11 | remove hppa64 port, which we never got going beyond broken single users. | Theo de Raadt | |
hppa reverse-stack gives us a valuable test case, but most developers don't have a 2nd one to proceed further with this. ok kettenis | |||
2016-05-10 | Enable the readline(3) regression test provided by Bastian Maerkisch, | Ingo Schwarze | |
all bugs tested so far have been fixed. | |||
2016-05-10 | adapt to recently changed internal interface of read_getcmd() | Ingo Schwarze | |