summaryrefslogtreecommitdiff
path: root/regress
AgeCommit message (Collapse)Author
2007-10-15Add new "reached end of file while parsing quoted string" as expectedHans-Joerg Hoexer
error message.
2007-10-14regression test for include directive (if anyone has a better way to doTheo de Raadt
this messy include file copy, let me know)
2007-10-13we decided numbers used as strings is wrongTheo de Raadt
2007-10-13Do not attempt to work on more than SHMMAXPGS pages, makes this run unmodifiedMiod Vallat
on vax.
2007-10-09New OpenCVS regression tests.Tobias Stoeckmann
OK niallo@, xsa@
2007-10-08attribute packed -> __packedGilles Chehade
OK millert
2007-10-07and reorg this tree as wellOtto Moerbeek
2007-10-05typoOtto Moerbeek
2007-10-05basic tests now work, including those that should failOtto Moerbeek
2007-10-05typoOtto Moerbeek
2007-10-05work in obj dirOtto Moerbeek
2007-10-05more regress scaffoldingOtto Moerbeek
2007-10-05fix by actually using pccOtto Moerbeek
2007-10-03add two new audio ioctls, AUDIO_GETPRINFO and AUDIO_GETRRINFO, and theJacob 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-09-30compare of constants outside type rangeOtto Moerbeek
2007-09-30test case involving superfluous type warnings involving enumsOtto Moerbeek
2007-09-26more minimal exampleOtto Moerbeek
2007-09-26two more test casesOtto Moerbeek
2007-09-24another init problemOtto Moerbeek
2007-09-24newly discovered init problemOtto Moerbeek
2007-09-23Allow numbers to be used as unquoted strings again.Marco Pfatschbacher
While there, also restrict the use of concatenated, unquoted strings for variable assignments only. Eyeballed by markus@, OK henning@
2007-09-21already fixed include problemOtto Moerbeek
2007-09-21add the other case Ted mentionedOtto Moerbeek
2007-09-21two know failures of pccOtto Moerbeek
2007-09-20some initial regress bits for opencvs. not expected to pass just yet.Niall O'Higgins
ok joris@ ray@ xsa@
2007-09-19Fix and re-enable tests for interface->address translation.Marco Pfatschbacher
OK henning
2007-09-19Add a few "flags any" and "no state" to have the rulesetsMarco Pfatschbacher
match against the old checksums again.
2007-09-19pfctl seems to report errors when accessing empty tables,Marco Pfatschbacher
in a different manner now. Use "-T show" now. OK henning
2007-09-19"flags S/SA keep state" is the default nowMarco Pfatschbacher
OK henning
2007-09-19Adopt 14 altq tests to the change of the queue output format.Marco Pfatschbacher
OK henning
2007-09-19This got broken when a second pool (pfrkentry2) was addedMarco Pfatschbacher
for source-tracking support about 3 years ago. OK henning
2007-09-19Remove "localhost" from the table test, since the result is dependentMarco Pfatschbacher
on the resolver. In some enviroments you'll get an AAAA for it, in others you won't. Testing the resolver isn't really the intention of this test anyway. OK henning
2007-09-19permit this to compile with gcc 2.xTodd T. Fries
ok cloder@
2007-09-17Add a test for .BEGIN/.END keywordsMarc Espie
2007-09-12fix format strings, sizeof() does not return an intOtto Moerbeek
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