summaryrefslogtreecommitdiff
path: root/regress
AgeCommit message (Collapse)Author
2019-10-06Instead of running sed over the whole log to remove CRs, remove themDarren Tucker
only where it's needed (and confuses test(1) on at least OS X in portable).
2019-10-04more sshsig regress tests: check key revocation, the check-novalidateDamien Miller
signature test mode and signing keys in ssh-agent. From Sebastian Kinne (slightly tweaked)
2019-10-03Now that we have snmp set, we can fully remove the dependency on netsnmp.Martijn van Duren
2019-09-27Test for empty result in expected bits. Remove CRs from log as theyDarren Tucker
confuse tools on some platforms. Re-enable the 3des-cbc test.
2019-09-23Add lastcomm(1) test for system call from writeable memory. ThisAlexander Bluhm
requires that /usr/obj is mounted wxallowed, otherwise the test is skipped. Split the stack map test into two stack pointer validation tests, one during syscall and one in the trap handler. Currently the tests during system call fail on amd64 as the signal handler is not executed properly. On i386 and arm64 they pass. On armv7 something else is broken.
2019-09-20Improve handling of nosuid mount option, temporary directory andAlexander Bluhm
super user permissions.
2019-09-20REGRESS_SKIP_TARGETS was spelled incorrectly.Alexander Bluhm
reported by Moritz Buhl
2019-09-20Fix compiler warning and whitespace.Alexander Bluhm
2019-09-20Run regress wx_syscall if /usr/obj is mounted wxallowed.Alexander Bluhm
Otherwise skip the test.
2019-09-20Regress mmap_hint usually passes, enable it.Alexander Bluhm
2019-09-19Make checksum comparison more robust. 0xffff is the same as 0.Alexander Bluhm
2019-09-18Correct spelling in comment.rob
2019-09-18Let snmpd's regress test make use of our very own brand new SNMPv3/USMMartijn van Duren
support in snmp(1).
2019-09-17Rsyslogd TLS client side is unreliable. Disable compatiblity test.Alexander Bluhm
2019-09-17Send ping6 fragment that ends behind ipv6 max packet size.Alexander Bluhm
2019-09-13oops, commit correct version of the expected resultsIngo Schwarze
2019-09-13Improve validation of function names:Ingo Schwarze
1. Relax checking to accept function types of the form "ret_type (fname)(args)" (suggested by Yuri Pankov <yuripv dot net>). 2. Tighten checking to require the closing parenthesis.
2019-09-11Fix unveil for relative lookups in the non AT_FDCWD caseBob Beck
Issue spotted by Benjamin Baier <programmer@netzbasis.de> with relative path lookups from openat(2). Lacking a current working directory unveil, operations using the *at functions could fail when not crossing an unveil, since an initial covering unveil was not found. This corrects this so we walk up from the directory vnode to find a covering unveil at the start of non AT_FDCWD lookups, and adds regress for this case. ok bluhm@
2019-09-11Make it possible to free overlapping regions (effectively allowingMark Kettenis
freeing parts of regions that are already free) when the EX_CONFLICTOK flag is passed to extent_free. ok jmatthew@
2019-09-10If rsyslogd is not installed, explicitly skip these syslogdAlexander Bluhm
compatibility tests. Fix some races and increase the timeout for rsyslog tests.
2019-09-10Fix more races in syslogd test.Alexander Bluhm
2019-09-10Test that lastcomm(1) shows M flag if the stack pointer was not inAlexander Bluhm
stack memory.
2019-09-10Fix race in syslogd test.Alexander Bluhm
2017-06-08Start with a clean /var/account/acct accounting file and turn onAlexander Bluhm
process accounting with accton(8). Each test executes a command with a unique name and checks the flags in the lastcomm(1) output. Run tests with fork, su, core, xsig, pledge, trap accounting.
2019-09-08Pull out and expand openat tests into their own routine.Bob Beck
2019-09-06Check for RSA support before using it for the user key, otherwise useDarren Tucker
ed25519 which is supported when built without OpenSSL.
2019-09-05Ignore missing pseudo terminal for ssh when called from cron job.Alexander Bluhm
2019-09-05adapt to print_indent() HTML_NOSPACE fix, html.c rev. 1.132Ingo Schwarze
2019-09-05Name environment variables consistently.Alexander Bluhm
2019-09-05Minimize differences between IPv4 and IPv6 multicast tests.Alexander Bluhm
2019-09-05Link IPv6 multicast tests to regress build.Alexander Bluhm
2019-09-05Test IPv6 multicast sender, receiver, router. Minimal mc6routeAlexander Bluhm
implmentation does not care about ICMPv6, it simply adds static multicast routes. Multicast routing needs at least two test machines. Otherwise only send and receive on localhost is tested. Currently receiving link-local packets via loopback does not work due to wrong scope id. Everything is mostly copied from IPv4 regress.
2019-09-05Feed the bntest output to bc(1). This checks the result of the bigAlexander Bluhm
num calculations and avoids lots of ugly output to stdout. Remove fflush(3) of stderr, it is unbuffered anyway. with Moritz Buhl
2019-09-02Test multicast sender, receiver, router. Minimal mcroute implmentationAlexander Bluhm
does not care about IGMP, it simply adds static multicast routes. Mutlicast routing needs at least two test machines. Otherwise only send and receive on localhost is tested.
2019-09-03adapt to new <p> output logic (html.c rev. 1.131)Ingo Schwarze
2019-09-03regress test for sshsig; feedback and ok markus@Damien Miller
2019-09-03only add plain keys to prevent any certs laying aroundDamien Miller
from confusing the test.
2019-09-03Create remote log files in obj directory.Alexander Bluhm
2019-09-02Test multicast sender, receiver, router. Minimal mcroute implmentationAlexander Bluhm
does not care about IGMP, it simply adds static multicast routes. Mutlicast routing needs at least two test machines. Otherwise only send and receive on localhost is tested.
2019-09-02Link multicast tests to regress build.Alexander Bluhm
2019-09-02Test multicast sender, receiver, router. Minimal mcroute implmentationAlexander Bluhm
does not care about IGMP, it simply adds static multicast routes. Mutlicast routing needs at least two test machines. Otherwise only send and receive on localhost is tested.
2019-08-30Use ed25519 for most hostkey rotation tests since it's supported even whenDarren Tucker
built without OpenSSL. Use RSA for the secondary type test if supported, otherwise skip it. Fixes this test for !OpenSSL builds.
2019-08-23Default layout for disklabel(8) has changed, /usr became larger.Alexander Bluhm
Adjust expected values in test. reminded by Moritz Buhl
2019-08-22Test did not compile due to missing symbols. Add source sshbuf-misc.cAlexander Bluhm
to regress as it was done in ssh make file. from Moritz Buhl
2019-08-22Define the new verbose variable also in the regression sources soAlexander Bluhm
that the test programs link with the rpki-client object files again. from Moritz Buhl
2019-08-20shrink using new mechanismsMarc Espie
2019-08-20two simple scripts to shrink package generationMarc Espie
2019-08-20use wrapper module instead of rolling our ownMarc Espie
2019-08-20remove old cdrom=... propertyMarc Espie
2019-08-19silently add -DDONTLOGMarc Espie