summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
...
* Differentiate between empty and short reports, and raise the bar for whatdes2005-07-291-2/+6
| | | | we consider a short report to 128 characters. Canonicalize %%HOME%%.
* Don't email reports that are empty or very short, as can happen if tbmasterdes2005-07-291-0/+6
| | | | fails to exec the tinderbox script.
* Shorten src / obj paths while capturing logs, making them both smaller anddes2005-07-281-1/+30
| | | | easier to read.
* Add regression tests (121 in total) for GEOM_ELI class.pjd2005-07-278-0/+607
| | | | | | | | | | To use them, run: # prove /usr/src/tools/regression/geom_eli Sponsored by: Wheel Sp. z o.o. http://www.wheel.pl MFC after: 1 week
* Add a description for bpfstatcsjp2005-07-261-0/+1
|
* Introduce a bpfstat utility. This program can be used to retrievecsjp2005-07-264-0/+402
| | | | | | | stats provided by bpf(4). This program will live in tools/ for now until we figure out where it will live permanently. Based on some discussions on developers@, it is likely that we will be adding this functionality to netstat(1) at some point.
* Add the first snapshot at rewriting the nanobsd build to be a shellscript.phk2005-07-261-0/+359
| | | | | | The overall idea is to get a single build script which will not need editing, but instead overrides and changes happen by config files passed as arguments.
* Add some more NO_FOO options. I'm not sure if they're correctly sorted in thephilip2005-07-251-0/+13
| | | | | | | size-scheme. Also add commented NO_BIND_FOO options for people who want named but not all of the bloat it likes to include by default. While here, make a comment about BOOT_COMCONSOLE_SPEED.
* Add fstab entries for ALTROOTSLICE and CFGSLICE, allowing us to do away withphilip2005-07-254-6/+37
| | | | | | | | | | | most of the hardcoding of device names in installed convenience scripts. Provide a new script (root/updatep) to easily update the ALTROOTSLICE. It does the same as updatep1/updatep2 without hardcoded device names. If noone protests, I'd like to get rid of updatep1/updatep2 at some point. As an extra bonus: turn on the error led while updating (on hardware with a led).
* Change jail IP from 1.0.0.127 to 127.0.0.1, which shows, that this testpjd2005-07-231-1/+1
| | | | doesn't examine the real issue as it pass without problems.
* update for recent additionssam2005-07-221-0/+7
|
* update with new msg classessam2005-07-221-0/+8
|
* Add a simple multicast socket regression test set:rwatson2005-07-222-0/+471
| | | | | | | | | | | | | - Test that the basic socket options have the right defaults, that we can change them, read them back, etc. - Add and remove some multicast addresses. - Send a loopback multicast address and make sure it arrives intact. There's more that could be done here, but it's a start. MFC after: 3 days
* In 2003, a -s flag was added to ministat to separate thephk2005-07-212-5/+8
| | | | | | | | | | avg/median/stddev bars onto separate lines for readability if the ranges overlapped. In 2005, ministat was extended to support more than 2 datasets, but the -s code was not updated. It will coredump if run with -s and >2 sets. PR: 82909 Submitted by: Dan Nelson <dnelson@allantgroup.com>
* Catch up.des2005-07-201-2/+2
|
* Remove redundant rc files.des2005-07-202-13/+0
|
* CURRENT -> HEAD, and dump ia64 and powerpc.des2005-07-203-7/+7
|
* Use 'HEAD' instead of 'CURRENT', while retaining backward compatibility.des2005-07-204-11/+11
|
* Include RELENG_4_11 and RELENG_4.des2005-07-202-2/+2
|
* Include RELENG_5_4 and RELENG_5. Chuck out ia64.des2005-07-202-4/+4
|
* Add rc files for RELENG_6.des2005-07-202-0/+13
|
* Add another regression tests for msdosfs which covers msdosfs_conv.c rev 1.45.imura2005-07-182-0/+77
| | | | Requested by: silby
* Correct one regression test (which was expected an incorrect answer), andgad2005-07-151-1/+66
| | | | add a few more tests. This matches bug fixes recently committed to 'env'.
* Fix a minor buglet making the code match the comment. Fractional cylindersphilip2005-07-141-1/+1
| | | | | | | | confuse fdisk and break the NanoBSD build. This is an MT5/6 candidate. MFC after: 3 days
* Upgrade these regression tests to track recent changes to `env'.gad2005-06-211-3/+78
| | | | Approved by: re (blanket `env')
* Add a suite of regression tests for all the recent changes to `env',gad2005-06-203-0/+801
| | | | | | | | | | | | | | | using my own script to handle it. I wrote my own partially because of all the quoting-issues involved with testing what I wanted to test, and partially because this lets me commit one script and one data file, instead of one-file-per-regression-test. This suite was good enough for my initial testing (and it did help me find a few bugs that would have otherwise been missed). I'm not sure how well it will work in general use, but I figured I might as well commit it. It won't *hurt* to have it available. At the worst, people can just ignore it. Approved by: re (blanket `env')
* o setsockopt(2) cannot remove accept filter. [1]maxim2005-06-111-10/+46
| | | | | | | | | | o getsockopt(SO_ACCEPTFILTER) always returns success on listen socket even we didn't install accept filter on the socket. o Fix these bugs and add regression tests for them. Submitted by: Igor Sysoev [1] Reviewed by: alfred MFC after: 2 weeks
* Add entry for recoverdisk.sobomax2005-06-061-0/+1
|
* Add a test for escaped newline handling.harti2005-06-018-0/+45
|
* Add support for TODO tests. These are tests that are supposed to fail,harti2005-06-012-23/+43
| | | | because of a make bug that should be fixed.
* Change the test infrastructure so that tests are easier to maintain andharti2005-05-31192-623/+910
| | | | | | | | | | | | | | so that make(1) will run in an almost clean environment and enhance the description of the test infrastructure. Add the ability to have multiple tests carried out per test script. Give some tests more meaningful names. Fix the usage message from the test scripts. Make it possible to pass several commands to the test scripts like: 'sh test.t setup run compare clean'.
* dd a '-n' option to ministat, which causes it to display only summaryrwatson2005-05-271-9/+17
| | | | | statistics, not graph and statistical test output. Useful for automated processing.
* Add a test to check whether in compat mode make detectes builtinsharti2005-05-206-0/+51
| | | | | on the command line and really executes the shell instead of directly executing the command.
* Add a test to ensure that in compat mode when a line contains noharti2005-05-206-0/+51
| | | | | | shell meta characters it is not passed to the shell, but the command is executed directly (given that the line is not a shell builtin) and that the line with a meta character is passed to the shell.
* Add a test that test whether we can replace the shell to use byharti2005-05-206-0/+54
| | | | | make with another shell and set all its parameters (meta and builtins not tested here).
* Make the path to make.conf a parameter which can be overridden.phk2005-05-191-6/+8
| | | | NB: you have to use absolute path!
* Save space by using -b 4096 -f 512 for newfs.phk2005-05-191-2/+4
| | | | Retain -i 8192 to avoid wasting inodes.
* Run the "files" customization scriptphk2005-05-191-1/+1
|
* Add some runtime admin/tool scriptsphk2005-05-194-0/+84
|
* Add a couple of basic customization scripts.phk2005-05-192-0/+33
|
* Explain the magicphk2005-05-191-0/+6
|
* Some test cases for .SHELL target: builtin shell selection andharti2005-05-1917-0/+179
| | | | changing the path of a builtin shell.
* Make <runefile.h> internal to libc.ru2005-05-161-5/+0
| | | | Suggested by: phantom
* Add an #ifdef'd non-blocking version of the test.rwatson2005-05-161-1/+10
| | | | Update copyright.
* Close the connect socket as well as the listen socket on completion.rwatson2005-05-161-2/+2
| | | | Update copyright.
* o -n option added.marcel2005-05-1510-2/+47
| | | | o -x option added.
* 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.
OpenPOWER on IntegriCloud