summaryrefslogtreecommitdiff
path: root/tools/regression/sockets/kqueue
Commit message (Collapse)AuthorAgeFilesLines
* Do a sweep and remove most WARNS=6 settingsKyle Evans2020-10-011-1/+0
| | | | | | | | | | | | | | | Repeating the default WARNS here makes it slightly more difficult to experiment with default WARNS changes, e.g. if we did something absolutely bananas and introduced a WARNS=7 and wanted to try lifting the default to that. Drop most of them; there is one in the blake2 kernel module, but I suspect it should be dropped -- the default WARNS in the rest of the build doesn't currently apply to kernel modules, and I haven't put too much thought into whether it makes sense to make it so. Notes: svn path=/head/; revision=366304
* Fix -Wunused warnings, bump WARNS to 6Enji Cooper2015-04-102-2/+3
| | | | | | | | | | | | The output is still broken if prove -rv is run and the testcase aborts prematurely with fail_assertion (the testcase doesn't really conform to TAP protocol properly, except when it completes fully) MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=281356
* NO_MAN= has been deprecated in favor of MAN= for some time, go aheadWarner Losh2014-04-131-1/+1
| | | | | | | | | and finish the job. ncurses is now the only Makefile in the tree that uses it since it wasn't a simple mechanical change, and will be addressed in a future commit. Notes: svn path=/head/; revision=264400
* Start the dreaded NOFOO -> NO_FOO conversion.Ruslan Ermilov2004-12-211-1/+1
| | | | | | | OK'ed by: core Notes: svn path=/head/; revision=139103
* Switch over to a different, more flexible test output protocol that'sNik Clayton2004-11-112-9/+62
| | | | | | | | | | | | | | | | | | | | | | | understood by Perl's Test::Harness module and prove(1) commands. Update README to describe the new protocol. The work's broken down into two main sets of changes. First, update the existing test programs (shell scripts and C programs) to produce output in the ok/not ok format, and to, where possible, also produce a header describing the number of tests that are expected to be run. Second, provide the .t files that actually run the tests. In some cases these are copies of, or very similar too, scripts that already existed. I've kept the old scripts around so that it's possible to verify that behaviour under this new system (in terms of whether or not a test fails) is identical to the behaviour under the old system. Add a TODO file. Notes: svn path=/head/; revision=137587
* Join the effort in simplifying this makefile. ;)Ruslan Ermilov2004-09-031-3/+1
| | | | Notes: svn path=/head/; revision=134681
* Pass O_NONBLOCK directly to fcntl() rather than the pointer to an intRobert Watson2004-09-021-12/+8
| | | | | | | | holding the value O_NONBLOCK. This worked previously because I was lucky. Notes: svn path=/head/; revision=134662
* Don't override the rule used to build a binary by providing our ownRobert Watson2004-09-021-1/+0
| | | | | | | compiler line. Notes: svn path=/head/; revision=134661
* Add a basic kqueue + UNIX domain socket pair regression test to do someRobert Watson2004-08-242-0/+340
elementary exercising of kqueues on datagram and stream sockets. Note that the datagram write kqueue case is left untested due to potentially confusing behavior for the developer (me) that might require attention. Notes: svn path=/head/; revision=134236