summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Catching up with the latest crypto API changes in net80211.avatar2005-05-053-3/+6
| | | | Reviewed by: sam
* add simple test script.ume2005-05-051-0/+24
|
* - add $FreeBSD$.ume2005-05-041-1/+2
| | | | - enable -r option for regress target.
* - add $FreeBSD$.ume2005-05-041-10/+128
| | | | | | | - do service lookup. - add options to use gethostbyname(3) or getipnodebyname(3) instead of getaddrinfo(3). - add option to do reverse lookup.
* This commit was generated by cvs2svn to compensate for changes in r145857,ume2005-05-043-0/+319
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * import of parallel name resolution test.ume2005-05-043-0/+319
| | | | Obtained from: NetBSD
* Reduce diffs against actual production configuration.des2005-04-301-1/+1
|
* Remove a line which merely echoed the builtin default.des2005-04-301-1/+0
|
* Split the 'clean' command into 'cleansrc', 'cleanobj' and 'cleanroot'.des2005-04-301-2/+11
| | | | Specifying 'clean' is equivalent to specifying all three.
* Add 'cleanobj' to the default target list.des2005-04-301-1/+1
|
* Add an initial regression test suite for make(1).harti2005-04-2865-0/+958
| | | | Submitted by: Max Okumoto <okumotu@ucsd.edu> (partly, initial version)
* Adjust code to be more reliable.davidxu2005-04-241-10/+8
|
* Add a program to test if tls data is clean.davidxu2005-04-233-1/+52
|
* Fix printf() format string errors with 64-bit architectures.mux2005-04-211-9/+10
| | | | Spotted by: pav
* Remove redundant line, add comment about termcapphk2005-04-191-1/+1
|
* Adding another multi-byte characters related regression test for msdosfs.avatar2005-04-181-0/+22
| | | | | Tested by: njl Reviewed by: silby, bde, sam (mentor)
* Add another regression test - one we don't pass right now.silby2005-04-171-0/+22
|
* Have the regression test use a path in /tmp for a mount pointsilby2005-04-171-6/+8
| | | | instead of a directory that only exists on my machine.
* Those who are ungodlike should be returned an error.trhodes2005-04-161-0/+6
|
* Starting point for a regression test for mac_bsdextended(4)/libugidfw(3).rwatson2005-04-162-0/+198
| | | | | | | | | Currently only performs basic tests against the library string routines, and queries less important kernel state. Obtained from: TrustedBSD Project Sponsored by: SPAWAR, SPARTA MFC after: 3 days
* Also test \0 in the format string.stefanf2005-04-142-1/+1
|
* sort and expand the prunelist in a more or less generally sensiblyphk2005-04-131-18/+82
| | | | | | | | | order. Put some strategic comments in about how much storage is necessary and a longer explanation on the top. It is now pretty trivial to put nanoBSD on as little as a 64MB CF card. Sponsored by: Soekris Engineering.
* Introduce NANOBSD_PRUNE which can be used to zap out bits we don'tphk2005-04-131-0/+3
| | | | want to carry forward.
* Use df -iphk2005-04-131-1/+1
|
* Add a few regression tests for printf(1).stefanf2005-04-1312-1/+38
|
* Add NO_DICT handle. Saves almost 3.5 MB installed.phk2005-04-131-1/+2
|
* Add support for more than two datasets. Currently limited to 7 thoughmdodd2005-04-131-29/+29
| | | | | | | | | the limit is only the number of meaningful graph symbols available. Statistical comparison is performed between the first dataset and any further datasets. No objection by: phk
* Save argv[0] and use it in usage message.mdodd2005-04-131-1/+5
|
* Adding a brief description for pirtool.avatar2005-04-121-0/+1
| | | | Reviewed by: sam (mentor)
* Centralize usage in usage(), and use in preference to fprintf().rwatson2005-04-101-8/+16
| | | | | | List possible tests in usage(). When running a test, print the test name.
* A simple regression test for msdosfs. Not the best, but it would have caughtsilby2005-04-081-0/+21
| | | | the recent trouble msdosfs had.
* Add missing test-rem.t.das2005-04-021-0/+10
|
* print new stats for cts burst extension logicsam2005-03-301-0/+2
|
* fix typosam2005-03-301-1/+1
|
* handle rejoin eventsam2005-03-291-1/+3
|
* A few simple regression tests for remainder(), remainderf(),das2005-03-252-1/+144
| | | | remquo(), and remquof().
* Add regression tests for pkill/pgrep.pjd2005-03-2025-0/+803
| | | | MFC after: 3 days
* I forgot to commit this fix that is now kgdb aware...jmg2005-03-202-4/+5
|
* I keep forgetting that I wanted the customize logs collected too.phk2005-03-171-4/+6
| | | | Reminded by: Lennart Sorth, Andrea Campi and others.
* - Replace fe[gs]etmask() with feenableexcept(), fedisableexcept(), anddas2005-03-161-12/+31
| | | | | | | fegetexcept(). - Add additional tests for the above. - Output a separate success message for each of the 8 components of this set of tests.
* - ktrace(1) has nothing to do with schedgraph. Remove that from thejeff2005-03-141-1/+0
| | | | instructions.
* Add NO_GPIBphk2005-03-121-0/+1
|
* DTRT with /var so that any packages installed are correctly recorded.phk2005-03-121-2/+2
|
* Enable packet mode in boot0, this makes it unimportant if thephk2005-03-121-1/+1
| | | | geometry is 100% correct on most hardware.
* Check the return value of shutdown().rwatson2005-03-111-4/+8
|
* Add sigpipe, a simple UNIX domain socket and TCP regression test that isrwatson2005-03-112-0/+327
| | | | | | | | | | | | | intended to verify that SIGPIPE is delivered to a process writing or sending on a socket that has been shut down for write. If available, SO_NOSIGPIPE is also tested. This regression test is currently passed by RELENG_4, but not by HEAD or RELENG_5, due to a bug in the write() code for sockets. SO_NOSIGPIPE is not present in RELENG_4, however, so is not tested there. Reported by: Mikko Tyolajarvi <mbsd at pacbell dot net> PR: 78478
* Test cases for nextafter{,f,l} and nexttoward{,f,l}.das2005-03-073-1/+272
|
* Markup nits.des2005-03-031-2/+2
|
* Correct the default value for %%TINDERBOX%%.des2005-03-031-1/+1
|
* Add hacks that I use to test cross-builds (by building onru2005-03-024-0/+23
| | | | | | | | native and foreign architectures and comparing products). They eliminate most of the differences caused by different object directory paths, timestamping, and identification. (Note WORLDTMP was renamed to ${OBJTREE}${.CURDIR}/tmp.)
OpenPOWER on IntegriCloud