Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-11 | Clean up comment. | Darren Tucker | |
2018-05-09 | hook up rebound | anton | |
2018-05-09 | Add rebound regress tests, including a simple DNS server used as the upstream | anton | |
resolver with support for stubbing responses. Input and ok bluhm@ | |||
2018-05-09 | After the fix to kvm_getargv(3)/kvm_getenv(3) on May 3, | Ingo Schwarze | |
the command name is printed in a more logical way for -e without -c. Adjust the tests accordingly. Requested by bluhm@. | |||
2018-05-03 | Add posixtestsuite to subdir. | Alexander Bluhm | |
2018-05-03 | Add a mimimal regress test that runs the open POSIX test suite from | Alexander Bluhm | |
ports. There is no check whether the tests pass or fail yet. Just run it to stress the kernel and keep the results in the obj directory. | |||
2018-05-01 | regress changes for new stuff. - allow walking .., return EPERM | Bob Beck | |
on flag mismatch, ENOENT for files with no unveil flags at all | |||
2018-04-28 | regress for unveil | Bob Beck | |
2018-04-28 | bye bye pledgepath | Bob Beck | |
2018-04-27 | Add test for stat behavior to make sure we can stat executable only | Bob Beck | |
2018-04-27 | Fix regress that was depengin on pledgepath() being able to | Bob Beck | |
traverse the filesystem unrestricted | |||
2018-04-27 | test with pledgepath(NULL,NULL) instead of pledge activating things | Bob Beck | |
2018-04-27 | Fix sem_timedwait regress test. Needs SA_RESTART to block now. | Paul Irofti | |
Hug and OK guenther@ | |||
2018-04-27 | Change regress to accomodate no flags escalation once active | Bob Beck | |
2018-04-27 | remove references to O flags in test messages | Bob Beck | |
2018-04-27 | pthread_join() must not return EINTR | Philip Guenther | |
Simplify sem_trywait() ok pirofti@ mpi@ | |||
2018-04-26 | tests for clearing out flags | Bob Beck | |
2018-04-26 | Prefer <fcntl.h> over <sys/fcntl.h> in userland | Philip Guenther | |
While here, delete some extra #includes and apply style(9) sort rules. ok deraadt@ krw@ mpi@ | |||
2018-04-26 | Adjust regress for new rwxc flags instead of O_FLAGS | Bob Beck | |
2018-04-26 | failure for exiting on signal | Bob Beck | |
2018-04-26 | Add regress for .. being disallowed as it currently is | Bob Beck | |
2018-04-26 | test double slash in paths | Bob Beck | |
2018-04-26 | Moar regress | Bob Beck | |
2018-04-26 | Regress additions and fixes for latest | Bob Beck | |
2018-04-25 | New regress to handle flags | Bob Beck | |
2018-04-24 | Add os-test to subdir. | Alexander Bluhm | |
2018-04-24 | Test corner cases of few IO and a bunch of UDP network system calls | Alexander Bluhm | |
and check result. The test suite https://sortix.org/os-test/ is used as a package and run as regress. A html file with results is generated. tests suite suggested by mpi@ | |||
2018-04-24 | regress changes for later varieties | Bob Beck | |
2018-04-24 | Add test for proper stack reallocation in time command | kn | |
OK jca | |||
2018-04-23 | Test X509_CRL_METHOD_free(NULL) | Theo Buehler | |
2018-04-23 | About half of the listed functions are wrappers of ASN1_item_free(). | Theo Buehler | |
Annotate them. | |||
2018-04-23 | Add a big pile of *_free() functions which I audited to be NULL-safe. | Theo Buehler | |
2018-04-20 | revert to 2018/04/20 10:00:00, before oops | Christian Weisgerber | |
2018-04-20 | sync | Theo de Raadt | |
2018-04-19 | Add gif subdir. | Alexander Bluhm | |
2018-04-19 | Create two gif(4) interfaces in different routing domains. Test | Alexander Bluhm | |
encapsulating IPv4 and IPv6 packets in IPv4 and IPv6 gif tunnels. | |||
2018-04-16 | Add regression test of unlinking and re-creating a pledgepathed file | Bob Beck | |
2018-04-14 | Make ENGINE_free() succeed on NULL. Matches OpenSSL's behavior and | Theo Buehler | |
simplifies the caller side. tested by & ok inoguchi; discussed with schwarze | |||
2018-04-13 | Add a test for stack pivots that trigger page faults. | mortimer | |
"Regress is always open for commits" @deraadt | |||
2018-04-12 | Disable counting TCP packets in the test as it does not work reliably. | Alexander Bluhm | |
The sequence of packets and combination of flags depends on timing. | |||
2018-04-11 | Fix a race in the syslogd test. It did not wait long enough for | Alexander Bluhm | |
syslogd to shutdown. So the test could miss some log messages. | |||
2018-04-11 | The pledge flag for file descriptors opened from /dev/fd was always | Alexander Bluhm | |
set for pledged processes. dup(2) uses the flag from the old file descriptor. Make open /dev/fd consistent to duplicate and inherit the flag. OK deraadt@ | |||
2018-04-10 | Check that a file descriptor's plegde flag is correctly propagated. | Alexander Bluhm | |
The test covers the system calls dup, dup2, dup3, open /dev/fd, and file descriptor passing. The fstat(1) output is analysed. | |||
2018-04-10 | Add subdir filedescriptor. | Alexander Bluhm | |
2018-04-10 | Check that a file descriptor's plegde flag is correctly propagated. | Alexander Bluhm | |
The test covers the system calls dup, dup2, dup3, open /dev/fd, and file descriptor passing. The fstat(1) output is analysed. | |||
2018-04-10 | tweak usage() | Theo Buehler | |
2018-04-10 | Two new low-level roff(7) features: | Ingo Schwarze | |
* .nr optional third argument (auto-increment step size) * \n+ and \n- numerical register auto-increment and -decrement bentley@ reported on Dec 9, 2013 that lang/sbcl(1) uses these. | |||
2018-04-10 | more typos spotted by Karsten Weiss using codespell | Damien Miller | |
2018-04-10 | make this a bit more portable-friendly | Damien Miller | |
2018-04-09 | When accessing an undefined number register, define it to be zero, like | Ingo Schwarze | |
the previous commit for strings and macros, only technically simpler. Desired behaviour also mentioned by Werner Lemberg in 2011. This diff adds functionality but is -21 +19 LOC. :-) |