aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/lib/libc/net
Commit message (Collapse)AuthorAgeFilesLines
* Integrate tools/regression/lib/libc/net into the FreeBSD test suiteEnji Cooper2015-11-088-459/+0
| | | | | | | | | | | | | as lib/libc/tests/net Also, fix eui64_aton_test:test_str(..). The test was comparing the result of eui64_aton to a pointer of the expected result. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=290563
* Remove broken tests for eui64_line.Julio Merino2014-03-123-92/+1
| | | | | | | | | This function is not public and brooks (initial committer adding the code) suggests the deletion of the tests (which I don't know if they work) instead of changing the visibility of the function. Notes: svn path=/head/; revision=263087
* Add regression tests for ethers(3) functions, including new _r variants.Robert Watson2007-05-133-1/+246
| | | | | | | | | | | | | Four tests currently fail: test_ether_line_bad_1() and test_ether_line_bad_2() due to bugs in ether_line(3). test_ether_ntohost() and test_ether_hostton() due to not being fully implemented tests. Notes: svn path=/head/; revision=169523
* Add to CFLAGS.Ruslan Ermilov2005-02-121-1/+1
| | | | Notes: svn path=/head/; revision=141750
* Switch over to a different, more flexible test output protocol that'sNik Clayton2004-11-116-10/+52
| | | | | | | | | | | | | | | | | | | | | | | 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
* Fix stupid patch(1) tricks. Apparently patch thinks all files match theBrooks Davis2004-05-274-251/+0
| | | | | | | | | | empty file so if you accidently apply a patch created with diff -N twice, you get files with duplicate contents. Reported by: Antoine Brodin <antoine.brodin at laposte.net> Notes: svn path=/head/; revision=129782
* Add support for an /etc/eui64 file modeled on /etc/ethers. The API isBrooks Davis2004-05-265-0/+514
modeled on ethers(3) except that all functions are thread-safe. Reviewed by: simokawa Notes: svn path=/head/; revision=129759