aboutsummaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/6.0.0_cvscvs2svn2005-11-03604-607/+605
| | | | | | 'RELENG_6_0_0_RELEASE'. This commit was manufactured to restore the state of the 6.0-RELEASE image.
* MF6: nanobsd.sh fixesPoul-Henning Kamp2005-10-171-4/+12
| | | | | | | Approved by: re@ (scottl) Notes: svn path=/releng/6.0/; revision=151409
* This commit was manufactured by cvs2svn to create branch 'RELENG_6_0'.cvs2svn2005-10-098-338/+0
| | | | Notes: svn path=/releng/6.0/; revision=151174
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2005-10-055-0/+212
| | | | Notes: svn path=/stable/6/; revision=150958
* MFC:Poul-Henning Kamp2005-09-2616-791/+286
| | | | | | | | | nanobsd conversion to shell script. Approved by: re@ (scottl) Notes: svn path=/stable/6/; revision=150575
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2005-09-211-0/+117
| | | | Notes: svn path=/stable/6/; revision=150433
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2005-09-031-0/+42
| | | | Notes: svn path=/stable/6/; revision=149752
* MFC rev 1.8:Simon L. B. Nielsen2005-09-021-1/+1
| | | | | | | | | Correct a comment to match the configuration parameter it describes. Approved by: re (scottl) Notes: svn path=/stable/6/; revision=149732
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2005-08-292-0/+84
| | | | Notes: svn path=/stable/6/; revision=149575
* MFC: Pull in stuff from -current.Poul-Henning Kamp2005-08-165-8/+27
| | | | | | | Approved by: re@ Notes: svn path=/stable/6/; revision=149167
* MFC: fix a bug relating to multiple (>2) data sets.Poul-Henning Kamp2005-08-162-5/+8
| | | | | | | Approved by: re@ Notes: svn path=/stable/6/; revision=149166
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2005-08-161-0/+424
| | | | Notes: svn path=/stable/6/; revision=149145
* sync with HEADSam Leffler2005-08-071-7/+26
| | | | | | | Approved by: re (kensmith) Notes: svn path=/stable/6/; revision=148812
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2005-07-298-0/+607
| | | | Notes: svn path=/stable/6/; revision=148508
* MFC 1.3: Correct one regression test, and add a few more tests.Garance A Drosehn2005-07-251-1/+66
| | | | | | | Approved by: re(kensmith) Notes: svn path=/stable/6/; revision=148404
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2005-07-116-1895/+0
| | | | Notes: svn path=/stable/6/; revision=147906
* Upgrade these regression tests to track recent changes to `env'.Garance A Drosehn2005-06-211-3/+78
| | | | | | | Approved by: re (blanket `env') Notes: svn path=/head/; revision=147522
* Add a suite of regression tests for all the recent changes to `env',Garance A Drosehn2005-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') Notes: svn path=/head/; revision=147495
* o setsockopt(2) cannot remove accept filter. [1]Maxim Konovalov2005-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 Notes: svn path=/head/; revision=147300
* Add entry for recoverdisk.Maxim Sobolev2005-06-061-0/+1
| | | | Notes: svn path=/head/; revision=147035
* Add a test for escaped newline handling.Hartmut Brandt2005-06-018-0/+45
| | | | Notes: svn path=/head/; revision=146856
* Add support for TODO tests. These are tests that are supposed to fail,Hartmut Brandt2005-06-012-23/+43
| | | | | | | because of a make bug that should be fixed. Notes: svn path=/head/; revision=146855
* Change the test infrastructure so that tests are easier to maintain andHartmut Brandt2005-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'. Notes: svn path=/head/; revision=146822
* dd a '-n' option to ministat, which causes it to display only summaryRobert Watson2005-05-271-9/+17
| | | | | | | | statistics, not graph and statistical test output. Useful for automated processing. Notes: svn path=/head/; revision=146689
* Add a test to check whether in compat mode make detectes builtinsHartmut Brandt2005-05-206-0/+51
| | | | | | | | on the command line and really executes the shell instead of directly executing the command. Notes: svn path=/head/; revision=146454
* Add a test to ensure that in compat mode when a line contains noHartmut Brandt2005-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. Notes: svn path=/head/; revision=146452
* Add a test that test whether we can replace the shell to use byHartmut Brandt2005-05-206-0/+54
| | | | | | | | make with another shell and set all its parameters (meta and builtins not tested here). Notes: svn path=/head/; revision=146449
* Make the path to make.conf a parameter which can be overridden.Poul-Henning Kamp2005-05-191-6/+8
| | | | | | | NB: you have to use absolute path! Notes: svn path=/head/; revision=146406
* Save space by using -b 4096 -f 512 for newfs.Poul-Henning Kamp2005-05-191-2/+4
| | | | | | | Retain -i 8192 to avoid wasting inodes. Notes: svn path=/head/; revision=146405
* Run the "files" customization scriptPoul-Henning Kamp2005-05-191-1/+1
| | | | Notes: svn path=/head/; revision=146404
* Add some runtime admin/tool scriptsPoul-Henning Kamp2005-05-194-0/+84
| | | | Notes: svn path=/head/; revision=146402
* Add a couple of basic customization scripts.Poul-Henning Kamp2005-05-192-0/+33
| | | | Notes: svn path=/head/; revision=146399
* Explain the magicPoul-Henning Kamp2005-05-191-0/+6
| | | | Notes: svn path=/head/; revision=146386
* Some test cases for .SHELL target: builtin shell selection andHartmut Brandt2005-05-1917-0/+179
| | | | | | | changing the path of a builtin shell. Notes: svn path=/head/; revision=146381
* Make <runefile.h> internal to libc.Ruslan Ermilov2005-05-161-5/+0
| | | | | | | Suggested by: phantom Notes: svn path=/head/; revision=146261
* Add an #ifdef'd non-blocking version of the test.Robert Watson2005-05-161-1/+10
| | | | | | | Update copyright. Notes: svn path=/head/; revision=146251
* Close the connect socket as well as the listen socket on completion.Robert Watson2005-05-161-2/+2
| | | | | | | Update copyright. Notes: svn path=/head/; revision=146250
* o -n option added.Marcel Moolenaar2005-05-1510-2/+47
| | | | | | | o -x option added. Notes: svn path=/head/; revision=146234
* Catching up with the latest crypto API changes in net80211.Tai-hwa Liang2005-05-053-3/+6
| | | | | | | Reviewed by: sam Notes: svn path=/head/; revision=145904
* add simple test script.Hajimu UMEMOTO2005-05-051-0/+24
| | | | Notes: svn path=/head/; revision=145901
* - add $FreeBSD$.Hajimu UMEMOTO2005-05-041-1/+2
| | | | | | | - enable -r option for regress target. Notes: svn path=/head/; revision=145885
* - add $FreeBSD$.Hajimu UMEMOTO2005-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. Notes: svn path=/head/; revision=145860
* This commit was generated by cvs2svn to compensate for changes in r145857,Hajimu UMEMOTO2005-05-043-0/+319
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=145858
| * import of parallel name resolution test.vendor/NetBSD/miscHajimu UMEMOTO2005-05-043-0/+319
| | | | | | | Obtained from: NetBSD Notes: svn path=/vendor/NetBSD/dist/; revision=145857
* Reduce diffs against actual production configuration.Dag-Erling Smørgrav2005-04-301-1/+1
| | | | Notes: svn path=/head/; revision=145719
* Remove a line which merely echoed the builtin default.Dag-Erling Smørgrav2005-04-301-1/+0
| | | | Notes: svn path=/head/; revision=145718
* Split the 'clean' command into 'cleansrc', 'cleanobj' and 'cleanroot'.Dag-Erling Smørgrav2005-04-301-2/+11
| | | | | | | Specifying 'clean' is equivalent to specifying all three. Notes: svn path=/head/; revision=145717
* Add 'cleanobj' to the default target list.Dag-Erling Smørgrav2005-04-301-1/+1
| | | | Notes: svn path=/head/; revision=145716
* Add an initial regression test suite for make(1).Hartmut Brandt2005-04-2865-0/+958
| | | | | | | Submitted by: Max Okumoto <okumotu@ucsd.edu> (partly, initial version) Notes: svn path=/head/; revision=145620
* Adjust code to be more reliable.David Xu2005-04-241-10/+8
| | | | Notes: svn path=/head/; revision=145468