summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Introduce WITHOUT_SSP option that allows users to exclude LGPLedkan2007-05-191-0/+2
| | | | libssp from the build.
* Add a description for the WITHOUT_SYMVER option.deischen2007-05-171-0/+2
|
* Add regression tests for ethers(3) functions, including new _r variants.rwatson2007-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.
* Add a regression test to detect if waiting on the I/O serialization lockrwatson2007-05-062-0/+216
| | | | | | | on socket buffers is interruptible or not, which detacts the regression I introduced recently in 7-CURRENT (spotted by alfred). This test passes in older -CURRENT, and with the as-yet uncommitted sx_xlock_sig and sblock fix patches.
* Improve reporting in recoverdisk a good deal.phk2007-04-231-12/+26
| | | | | Submitted by: Ulrich Spoerlein <uspoerlein@gmail.com> PR: 111630
* o fix a buffer overflow in save_key() that occurs with 104-bit wepsam2007-04-231-9/+22
| | | | | | | o make some variables parameters (frequency of crack, and maximum channel) o try to spoof mac if association fails Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* Add some notes clarifying usage and a couple of known bugskris2007-04-221-1/+15
|
* Regression tests for recent changes to inet6_rth_* family of functionsmtm2007-04-214-0/+556
| | | | regarding RFC3542 compliance.
* Change the semantics of -i (in-place editing) so that it treatsyar2007-04-211-1/+35
| | | | | | | | | | | | | | | | | each file independently from other files. The new semantics are desired in the most of practical cases, e.g.: delete lines 5-9 from each file. Keep the previous semantics of -i under a new option, -I, which uses a single continuous address space covering all files to edit in-place -- they are too cool to just drop them. Add regression tests for -i and -I. Approved by: dds Compared with: GNU sed Discussed on: -hackers MFC after: 2 weeks
* Test sending 0 bytes.pjd2007-04-201-0/+6
|
* Fix length calculation.pjd2007-04-201-1/+1
|
* NanoBSD modifications:adrian2007-04-201-1/+7
| | | | | | | | | | | | * Break out the boot0 loader selection into a variable - NANO_BOOTLOADER - so people like me with VGA consoles can override the default (which is to use boot0sio) * Put the boot0 configuration options in NANO_BOOT0CFG in case you want to override the defaults. * Modify nanobsd.8 to reflect the changes and hint the console default is serial. MFC after: 2 weeks
* Valid error codes for err() and errx() are 1..255.des2007-04-192-27/+29
| | | | The correct format specifier for ssize_t is %zd.
* Add more tests to verify last sendfile(2) breakage: test sending morepjd2007-04-191-3/+38
| | | | than a page size and nbytes=0.
* Committing regression tests for all implemented nsswitch databases.bushman2007-04-1520-0/+5390
| | | | | | | Detailed description and instructions are in the README file. This work had been basically done during GSoC 2006. Approved by: brooks (mentor)
* Nuke ipblock. A more complete multicast regression test suite is on the way.bms2007-04-122-231/+0
|
* Fix a bug whereby group addresses were incorrectly computed in the test.bms2007-04-091-2/+2
| | | | | | [Since the change to strict refcounting for in_multi objects, this test began to fail; formerly the refcount was a count of the number of requests for a given address, NOT a count of pointers to the object.]
* correct copyright attribution; there was no copyright in the patchessam2007-04-092-2/+4
| | | | | | from Andrea so I assigned him ownership; this corrects that Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* Due to the recent "aircrack-ptw" WEP cracking discovery, I thoughtsam2007-04-084-163/+909
| | | | | | | | | | | | | | that it might be worth fixing a couple of bugs in wesside and making it use the new cracking technique. I think this enhancement makes the tool quite usable. It is possible to recover keys in only a couple of minutes. * Fix ACKs. Firmware will ACK data [just set the MAC addr correctly]. * Fix RX routines. Process all packets read(). * Use aircrack-ptw [built-in] rather than external aircrack. * Log data in pcap format so that it may be used by others [e.g. aircrack-ng]. Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* Add a small test program for the additional socket options whichbms2007-04-062-0/+231
| | | | RFC 3678 (Source-specific Multicast API) brings to FreeBSD.
* Connect ZFS to the build.pjd2007-04-062-0/+33
|
* Fix a fd leak in socketpair():jhb2007-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.
* Add another fd leak test for accept() I used to test the fix in 1.234 ofjhb2007-04-021-1/+83
| | | | sys/kern/uipc_syscall.c.
* Logically separate the complex `hanoi' and `math' tests from basic tests.yar2007-04-021-2/+3
|
* Don't forget to close the range if we branched over its endyar2007-04-022-1/+6
| | | | | | | | | | | | | and had no chance to match it by the 2nd address precisely. Otherwise the unclosed range would bogusly extend to the end of stream. Add a basic regression test for the bug fixed. (This change also fixes the more complex case 5.3 from `multitest.t'.) Compared with: SUN and GNU seds Tested by: regression tests MFC after: 1 week
* Today SUN and GNU seds fully agree on test 5.3 and behaveyar2007-04-022-13/+1
| | | | | | in a more reasonable way than BSD sed does: they properly close the range even if we branched over its end. No doubt, the range `1,5' should not match lines from 9 through 14.
* This trivial change should fix at least 3 similar bugs. All ofyar2007-04-015-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | them are related to the `c' function's need to know if we are at the actual end of the address range. (It must print the text not earlier than the whole pattern space was deleted.) It appears the only sed function with this requirement. There is `lastaddr' set by applies(), which is to notify the `c' function, but it can't always help because it's false when we are hitting the end of file early. There is also a bug in applies() due to which `lastaddr' isn't set to true on degenerate ranges such as `$,$' or `N,$' if N appears the last line number. Handling early EOF condition in applies() could look more logical, but it would effectively revert sed to the unreasonable behaviour rev. 1.26 of main.c fought against, as it would require lastline() be called for each line within each address range. So it's better to call lastline() only if needed by the `c' function. Together with this change to sed go regression tests for the bugs fixed (c1-c3). A basic test of `c' (c0) is also added as it helped me to spot my own error. Discussed with: dds Tested by: the regression tests MFC after: 1 week
* Adding tests for Camellia which will be added to the tree soon.gnn2007-03-262-2/+14
| | | | Added tests for aes-ctr which were not present before.
* Update the regression test so that there are actually two independentgnn2007-03-241-13/+12
| | | | | | networks involved, as opposed to two hosts on one network. MFC after: 1 week
* Add a test for IPv6 and IPsec which is similar to the one for IPv4.gnn2007-03-212-0/+108
| | | | | Add comments to the test for IPv4 with IPsec. MFC after: 1 week
* Overhaul driver/subsystem api's:sam2007-03-212-20/+122
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o make all crypto drivers have a device_t; pseudo drivers like the s/w crypto driver synthesize one o change the api between the crypto subsystem and drivers to use kobj; cryptodev_if.m defines this api o use the fact that all crypto drivers now have a device_t to add support for specifying which of several potential devices to use when doing crypto operations o add new ioctls that allow user apps to select a specific crypto device to use (previous ioctls maintained for compatibility) o overhaul crypto subsystem code to eliminate lots of cruft and hide implementation details from drivers o bring in numerous fixes from Michale Richardson/hifn; mostly for 795x parts o add an optional mechanism for mmap'ing the hifn 795x public key h/w to user space for use by openssl (not enabled by default) o update crypto test tools to use new ioctl's and add cmd line options to specify a device to use for tests These changes will also enable much future work on improving the core crypto subsystem; including proper load balancing and interposing code between the core and drivers to dispatch small operations to the s/w driver as appropriate. These changes were instigated by the work of Michael Richardson. Reviewed by: pjd Approved by: re
* Rename sed.test to multitest.t to comply with the naming scheme ofdds2007-03-142-473/+1
| | | | the regression suite.
* Reinstate error-testing regression tests.dds2007-03-1433-78/+107
|
* Integrate the tests I wrote in 1992 with our current regressiondds2007-03-143-130/+111
| | | | testing framework and protocol.
* Reference results for sed.test (to be renamed into multitest.t).dds2007-03-1490-0/+4210
| | | | | | | | | I have verified these with GNU sed 4.1.5 (and in some cases with Solaris sed) and they are identical, with the following exceptions: 5.3: The result is unspecified and BSD sed behaves differently. 6.3: GNU sed gets it wrong 7.1: GNU sed gets it wrong 7.8: BSD sed gets it wrong
* - Uncomment tests that were commented outdds2007-03-142-172/+84
| | | | | - Update platform-conditional tests to reflect current reality - Fix conditional for test 7.8: it is the fault of BSD sed
* - It looks like BSD and GNU sed can nowadays pass two more tests.dds2007-03-142-14/+8
| | | | - Test 7.8 fails for GNU sed not BSD.
* Use another non-printing test; address 0 now has a special meaning in GNU sed.dds2007-03-142-4/+4
|
* Document a procedure for testing individual binaries under development.dds2007-03-141-0/+6
|
* Update tests to reflect the state of the art of sed in HEAD anddds2007-03-142-90/+38
| | | | | | GNU sed 4.1.5. Almost all of the tests that were skipped for BSD or GNU sed now appear to work.
* Add sed math regression test.dds2007-03-142-1/+3
|
* Add Towers of Hanoi regression test.dds2007-03-142-1/+19
|
* Add missing newline to correct failure of the regression test.dds2007-03-141-1/+1
| | | | | | | | | According to IEEE Std 1003.1, 2004 "Whenever the pattern space is written to standard output or a named file, sed shall immediately follow it with a <newline>." An attempt at the same correction might have been made with r1.3, which is however identical with r1.2.
* Add raw IP support (protocol 114) to ipbroadcast regression test.bms2007-03-131-3/+19
|
* Add ncursesw, libelf, and libalias profiling librariesrafan2007-03-111-0/+21
| | | | Approved by: delphij (mentor)
* Add -A to specify local address for bind().bms2007-03-081-14/+24
|
* Support IP_SENDIF in -CURRENT.bms2007-03-081-10/+68
|
* Put this old tool for dumping PCI expansion ROM images somewhere useful.bms2007-03-023-0/+422
| | | | | WARNING: THIS IS NOT STABLE ON NON-I386 ARCHITECTURES, AND NEEDS SPECIFIC KNOWLEDGE OF THE ADDRESS SPACE ON YOUR SYSTEM TO WORK.
* Add -t to set IP TTL.bms2007-03-011-3/+19
|
* Introduce a test program for IPv4 broadcast datagram send.bms2007-03-012-0/+276
|
OpenPOWER on IntegriCloud