summaryrefslogtreecommitdiff
path: root/regress
AgeCommit message (Collapse)Author
2007-09-09use strcspn to properly overwrite '\n' in fgets returned bufferCharles Longeau
ok moritz@ gilles@
2007-09-03Adapt atexit() regress to recent changes and add __cxa_atexit() regress.Todd C. Miller
__cxa_atexit() regress from kurt@
2007-08-30regress test address rangesDaniel Hartmeier
2007-08-26- remove commented out 'extern errno' declarationJacob Meuser
- remove pointless AUDIO_FLUSH.
2007-08-26add a function to trigger recording and use it for full-duplex modeJacob Meuser
2007-08-06Add a regress test for -lthing dependencies. As bizarre as it may seem,Marc Espie
gmake does the same thing, and it's infrequently used in some ports.
2007-08-05check curly targets work. No need to look at the output. If curly targets don'tMarc Espie
expand correctly, the Makefile will fail. If it works, then it's okay.
2007-08-02update output to match recent make changes; ok espie@David Krause
2007-08-01Fix Dutch hypos.Miod Vallat
2007-08-01Retire OpenBSD/cats. Hardware is nice but prone to catch fire, and the firmwareMiod Vallat
is anything but useful. Nevertheless this was a very good platform to use as an OpenBSD/*arm* starting point, but nowadays this platform is not necessary anymore. Somehow these CATS motherboard are just like AUI hubs, with the difference that, when my AUI hub caught fire, 10base5 support was not removed from the networking code.
2007-08-01remove the need to inspect the output and check everything programmaticallyKurt Miller
okay kettenis@
2007-07-31+ hidden subdirKurt Miller
2007-07-31add regress to test __asm(".hidden symbol") works as expected. for gcc3Kurt Miller
arch only. okay kettenis@
2007-07-31set the blocksize to the size of the read/write buffers.Jacob Meuser
the blocksize matters for the poll() cases because we pass the poll when reading from the device when there is any data in the record buffer. since data is transfered into the buffer in blocksize chunks, if there was no and now is some data in the buffer, there is probably about blocksize bytes of data in the buffer. if in non-blocking mode, which is common when using poll(), and we try to read() more bytes than are in the record buffer, we will receive an EAGAIN. if we read() in blocksize chunks, we will never try to read more than is available. a more eloquent version of the above description should be in audio(4).
2007-07-31pass command line options to audiotest_rw through OPTS, e.g.Jacob Meuser
$ OPTS="-e 1 -r 22050 -c 1 -b 1024" DO_AUTEST=1 make
2007-07-23- enable thread support in libobjcKurt Miller
- disable thread priorities in libobjc to avoid thread starvation issues - major bump lib due to new link dependency on pthread - link objc regress with -pthread Tested on i386/amd64/powerpc/landisk/vax/sparc64/hppa. okay espie@
2007-07-06- document -vJason McIntyre
- tweak usage()
2007-07-06remove another $Id$, forgotten in last commitJacob Meuser
2007-07-06proper RCS tagsJacob Meuser
2007-07-06manpage improvements from jmc@Jacob Meuser
2007-07-06regression tests for various audio read(2) and write(2) scenariosJacob Meuser
2007-07-06regression test for AUDIO_GETINFO/AUDIO_SETINFO ioctlsJacob Meuser
2007-07-03both 'proto 50' and 'proto esp' must work in flow specificationsMarkus Friedl
2007-06-20Allow "log" for nat rules without "pass".Marco Pfatschbacher
OK henning@, ``passt scho'' markus@
2007-06-07test umac-64@openssh.comPeter Valchev
ok djm@
2007-06-06work around import limitationsNiall O'Higgins
2007-06-05Wrap long lines.Xavier Santolaria
2007-06-05add very basic regress framework for opencvs.Niall O'Higgins
more to come. ok joris@
2007-05-31convert to new .Dd format;Jason McIntyre
2007-05-29the MSIZE mbuf constant moved from MD param.h to MI param.hDavid Krause
ok deraadt@ millert@
2007-05-21Add mmap_mod.Artur Grabowski
2007-05-21A test for a corner-case that some pmaps get wrong.Artur Grabowski
2007-05-19detect if newfs fails and add an extra test (amd64 floppy)Otto Moerbeek
2007-05-17Add basename(3) and dirname(3) regression tests, from tbert.Ray Lai
OK otto@.
2007-05-15remove catman reference from SEE ALSO;Jason McIntyre
2007-05-15fix tests to run nowMarc Espie
2007-05-10Do not crash when lists include the "any" keyword. Reported byHans-Joerg Hoexer
<ralf.horstmann at gmx.net>, thanks! Slightly different fix. Also add a regression test. ok mpf@
2007-05-02now that optimization is on by default, fix the regress tests byDavid Krause
disabling optimization for the non-optimized tests, ok henning@
2007-04-29add sig-stop.Artur Grabowski
2007-04-29Quite dumb test for torturing SIGSTOP/SIGCONT.Artur Grabowski
2007-04-25- add ability to specify a tone to be played (defaults to 440hz)Jason Wright
- stop using atoi ... use strtod/strtol - fixing timing stuff for alaw/8
2007-04-18some newfs checks, not hooked in, because it needs certain disktabOtto Moerbeek
entries which are not available on all platforms
2007-04-14Add code to check the kern.securelvel sysctl, since we run with aThordur I. Bjornsson
default securelevel of 1, files with the SF_APPEND or SF_IMMUTBLE flag set cant be removed (or the have the flag removed) so we get alot of false postives. Instead of creating duplicte tests for different securelevels we simply remove these flags for the call to chflags(); This however makes some of the test a little corny but we agreed this was better. ok pedro@, tedu@
2007-04-12Remove the SF_NOUNLINK and UF_NOUNLINK from the test files, we dontThordur I. Bjornsson
support them; Cuts down false-postives. ok pedro@
2007-04-10No need to use umount -f now that both cases of vnode leakage were fixedPedro Martelletto
2007-03-30Don't assume 'run' to be executable, pointed out and okay deraadt@Pedro Martelletto
2007-03-30Add regression test suite for FFS, from FreeBSD, okay art@ deraadt@Pedro Martelletto
2007-03-16move autodetection of the ID type to the parser. this way theMarkus Friedl
static flows have the correct ID, too. ok hshoexer, reyk
2007-03-15When commiting multiple files with ci, the flags from the previousAlexander Bluhm
files affected the later ones. ok niallo@ xsa@
2007-03-14We switched to aes cbc quite some time ago, so also use the correctHans-Joerg Hoexer
key sizes here, too. We now have to use 128 bit key instead of 160. Noticed by david@