Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-22 | Test vectors for GMAC as published in the original GCM proposal | Mike Belopuhov | |
to NIST (gcm-spec.pdf) and draft-mcgrew-gcm-test-01.txt. | |||
2010-08-07 | Link against libkern's timingsafe_bcmp.c, so key_wrap regress tests | Matthew Dempsky | |
can compile again. ok phessler@, "Get it in right away" deraadt@ | |||
2010-08-04 | Add the new kqueue+rfork test, but disable the tests that use RFMEM | Philip Guenthe | |
as they don't work right now | |||
2010-08-04 | Regression test for the recent rfork+kqueue fix | Philip Guenthe | |
2010-08-04 | tun* interfaces are now automatically destroyed on last close when | Philip Guenthe | |
originally created by opening /dev/tun* | |||
2010-08-04 | Confirm that a NOTE_EXIT knote is delivered when the child exits | Philip Guenthe | |
Fix a C thinko | |||
2010-07-22 | Replace strncat() with strlcat(). | Marcus Glocker | |
2010-07-22 | Change include ordering. | Marcus Glocker | |
2010-07-22 | Initial regression test program for video(4). | Marcus Glocker | |
2010-06-27 | GCC is being intelligent with our asm statements that were used to pad stuff | Artur Grabowski | |
before and after a function. We made the assumption that the function would not be rearranged but would stay between our paddings. Haha, trusting gcc to not rearrange things, we've never had problems with that. | |||
2010-06-26 | Do not print "Read from tunnel foo failed" in the failure case of a | Bret Lambert | |
function named "tunnel_write", tell people that a write failed. ok claudio@ | |||
2010-06-21 | Fix fpe handler in regress test. Tested and `looks good' phessler@. | Paul Irofti | |
2010-06-21 | clean up all generated files | Peter Hessler | |
2010-06-20 | Add some missing includes, so we do not have implicit function | Peter Hessler | |
declarations. OK miod@, millert@ | |||
2010-06-20 | Add some missing includes, so we do not have implicit function | Peter Hessler | |
declarations. OK miod@ stsp@ | |||
2010-06-20 | remove the check for a comment that was removed in 2001 | Peter Hessler | |
pointed out by david@ | |||
2010-06-20 | Have the flock regress test actually depend on the flock regress | Peter Hessler | |
program, so we have a chance of running pointed out (a long time ago) by david@ | |||
2010-02-14 | Sync with current state of the tree. | Miod Vallat | |
2009-11-12 | respect the block size returned by the driver | Jacob Meuser | |
2009-10-13 | Make sure we do not loop when allocating an extent region with EX_CONFLICTOK | Miod Vallat | |
and the whole extent is used; the current code computations would wrap. Found the hard way by jsg@, fix discuss with kettenis@, and you get a regress test for free (which will spin if you compile it again an old subr_extent.c) | |||
2009-09-18 | Add regression test for overlapping allocation that should coallesce but | Mark Kettenis | |
currently doesn't. | |||
2009-04-10 | Add EX_CONFLICTOK flag that allows an allocation to conflict with existing | Mark Kettenis | |
allocations, making sure that the union of all space is allocated. ok deraadt@ | |||
2009-03-14 | Add mips64 and sh support to this test. | Miod Vallat | |
2009-02-15 | Add an ENAMETOOLONG test case for copyinstr(), inspired by sthen@'s code. | Joel Sing | |
ok sthen@ miod@ | |||
2008-09-19 | adjust for MAXINTERP crank, pointed out by dkrause@ | Damien Miller | |
2008-09-02 | fix builds for when obj/ present | Damien Miller | |
fix gcc warnings add licenses ok damien@ | |||
2008-08-22 | Test the IPv6 address printing of pf_print_host() in net/pf.c. | Alexander Bluhm | |
help and ok mpf | |||
2008-08-12 | test vectors for HMAC-MD5, HMAC-SHA1, HMAC-SHA256, AES-128-CMAC, | Damien Bergamini | |
AES Key Wrap. ok djm@ | |||
2008-07-26 | Make sure the test array is 64 bit aligned, this now makes sparc fail this | Miod Vallat | |
test. | |||
2008-07-25 | flock | Artur Grabowski | |
2008-07-25 | file advisory locking tests from FreeBSD. We fail to detect | Artur Grabowski | |
two deadlocks at the moment. | |||
2008-06-26 | First pass at removing clauses 3 and 4 from NetBSD licenses. | Ray Lai | |
Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@ | |||
2008-06-12 | +aes tests | Damien Miller | |
2008-06-12 | blocksize=128 keysize={128,256} AES test vectors from Dr. Brian Gladman | Damien Miller | |
http://fp.gladman.plus.com/AES/ | |||
2008-06-12 | Test crypto(4) AES against test vectors from Dr. Brian Gladman | Damien Miller | |
available at http://fp.gladman.plus.com/AES/ only keysize={128,256} and standard AES blocksize for now | |||
2008-06-10 | Add a regression test for signaling permission checks. From mickey@. | Hans-Joerg Hoexer | |
ok deraadt | |||
2008-06-09 | +aesxts subdir | Damien Miller | |
2008-06-09 | regress tests for crypto(4) CRYPTO_AES_XTS using test vectors from | Damien Miller | |
IEEE P1619-2007 standards; ok hshoexer@ | |||
2008-04-13 | Use arc4random_buf() when requesting more than a single word of output | Damien Miller | |
Use arc4random_uniform() when the desired random number upper bound is not a power of two ok deraadt@ millert@ | |||
2008-03-24 | msg_controllen has to be CMSG_SPACE so that the kernel can account for | Theo de Raadt | |
each cmsg_len (ie. msg_controllen = sum of CMSG_ALIGN(cmsg_len). This works now that kernel fd passing has been fixed to accept a bit of sloppiness because of this ABI repair. lots of discussion with kettenis | |||
2008-03-15 | Repair usage of CMSG_SPACE and CMSG_LEN. While there, send three fds | Hans-Joerg Hoexer | |
instead of just two as this decreases the propability that things just work although the sizes are wrong (ie. 8 aligns correctly on both 32 and 64 bit platforms even with wrong usage of CMSG_{LEN,SPACE} whereas 12 doesn't). | |||
2008-03-13 | Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due to | Theo de Raadt | |
an extensive discussion with otto, kettenis, millert, and hshoexer | |||
2007-12-27 | -s uses optarg; Elad Efrat | Theo de Raadt | |
2007-11-25 | spelling fixes, from Martynas Venckus; | Jason McIntyre | |
2007-10-20 | oops, too much copying from select(2) manual | Jacob Meuser | |
noticed by and fix from deanna@, thanks | |||
2007-10-19 | fix off by ones in the AUDIO_GET[PR]RINFO tests | Jacob Meuser | |
2007-10-13 | Do not attempt to work on more than SHMMAXPGS pages, makes this run unmodified | Miod Vallat | |
on vax. | |||
2007-10-03 | add two new audio ioctls, AUDIO_GETPRINFO and AUDIO_GETRRINFO, and the | Jacob Meuser | |
data structure these ioctls use, audio_bufinfo. these ioctls return information about the play and record buffers into the audio_bufinfo structure. these are being added to aid in porting non-native audio applications and libraries, and to fix issues in our OSS audio emulation. these ioctls exist only on OpenBSD and should not be used in code intended for distribution. ok ratchov | |||
2007-08-26 | - remove commented out 'extern errno' declaration | Jacob Meuser | |
- remove pointless AUDIO_FLUSH. | |||
2007-08-26 | add a function to trigger recording and use it for full-duplex mode | Jacob Meuser | |