summaryrefslogtreecommitdiff
path: root/tools/regression/sockets/socketpair
Commit message (Collapse)AuthorAgeFilesLines
* Convert tools/regression/sockets/socketpair to ATFAlan Somers2018-02-102-170/+0
| | | | | | | | | Reviewed by: cem MFC after: 3 weeks Differential Revision: https://reviews.freebsd.org/D14305 Notes: svn path=/head/; revision=329108
* Garbage collect argc/argv and bump WARNS to 6Enji Cooper2015-04-112-2/+2
| | | | | | | | MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=281398
* 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
* Fix a fd leak in socketpair():John Baldwin2007-04-021-0/+33
| | | | | | | | | - Close the new file objects created during socketpair() if the copyout of the new file descriptors fails. - Add a test to the socketpair regression test for this edge case. Notes: svn path=/head/; revision=168278
* o style.Makefile(5): WARNS= -> WARNS?=.Maxim Konovalov2006-07-091-1/+1
| | | | Notes: svn path=/head/; revision=160202
* Use WARNS and rely on rules rather than an explicit target for theRobert Watson2006-05-251-3/+1
| | | | | | | | | test binary. Reported by: maxim Notes: svn path=/head/; revision=158911
* Start the dreaded NOFOO -> NO_FOO conversion.Ruslan Ermilov2004-12-211-1/+1
| | | | | | | OK'ed by: core Notes: svn path=/head/; revision=139103
* For variables that are only checked with defined(), don't provideRuslan Ermilov2004-10-241-1/+1
| | | | | | | any fake value. Notes: svn path=/head/; revision=136910
* Add minimal socketpair() regression test to confirm that we can createRobert Watson2004-08-042-0/+139
(and close) PF_UNIX socket pairs, and that we can't create PF_INET socket pairs. More tests to follow. Notes: svn path=/head/; revision=133105