summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Verify that the moved source is no longer there.dds2007-12-161-0/+26
|
* Regression tests for upcoming makeup of mv.dds2007-12-163-0/+203
| | | | Case 20 corresponds to PR bin/118367.
* Make the reported number of tests match their actual number.dds2007-12-161-1/+1
| | | | This fixes the reporting under prove(1)
* cd to the correct directory so that the tests can be run from prove(1)dds2007-12-161-0/+1
|
* Regression tests for csqrt(3).das2007-12-153-1/+306
|
* use ATH environment variable (when set) as the default interface namesam2007-12-132-2/+12
|
* Some overdue tlc:sam2007-12-133-164/+191
| | | | | | | | | | o push include paths to the Makefile o use the AFTER trick to simplify adding new items o prepare stat blocks for additional data o align values for verbose output o fillin some missing stats MFC after: 1 week
* Fix markup nits.ru2007-12-125-5/+15
|
* Option depencies are (again) tracked automatically.ru2007-12-121-5/+0
|
* - Fix setting of MK_GSSAPI option by bsd.own.mk; its value shouldru2007-12-123-8/+17
| | | | | | | | | | | default to the value of MK_KERBEROS unless set explicitly by WITH_GSSAPI/WITHOUT_GSSAPI. (This introduces another type of MK_* variables which itself is questionable.) - Teach tools/build/options/makeman script that generates the src.conf(5) manpage about the new type of MK_* variables. - Fix broken logic in lib/Makefile.
* Hide the building and installation of libgssapi behind thedougb2007-12-102-0/+9
| | | | | | | | | | | | | | | | | | WITHOUT_KERBEROS knob. While GSS can be used for other things some third party software (most notably ports/x11/kdelibs3) takes the presence of libgssapi as an indication that kerberos is available, and attempts to link with the kerberos libs. If they are not available, the build will fail. Because you might want to use GSS but not kerberos, add a knob to re-enable it if WITHOUT_KERBEROS is present. Document the new knob, and the new behavior of WITHOUT_KERBEROS. Not objected and/or generally agreed to by: freebsd-arch Problem discussed/analyzed in: PR: ports/116484
* Add a reasonable-sounding description of the WITHOUT_INSTALLLIB knob.dougb2007-12-091-0/+5
|
* Remove some test instrumentation. (The Symbol.map changes broke it anyway.)das2007-12-091-4/+0
|
* Fixes to avoid overzealous constant folding.das2007-12-091-13/+15
|
* gcc 4 does some overzealous constant folding, and since it doesn'tdas2007-12-091-1/+6
| | | | | support FENV_ACCESS, that was causing this test to fail. Use a volatile to avoid the constant folding.
* update copyrightssam2007-12-046-34/+6
|
* update copyright'ssam2007-12-046-34/+6
|
* Make sure we set the locale to "C" when testing thousands' separatordas2007-12-031-2/+2
| | | | | support, rather than just "", which refers to the system default based on the environment.
* Tests for rounding, and for the leading 0's bug.das2007-12-031-1/+13
|
* Convert errx(-1, ..., strerror(errno)) to err(-1, ...).bz2007-11-281-8/+8
| | | | Discussed with: rwatson
* Add support for tcpmd5 tests.bz2007-11-282-13/+63
| | | | | | | | | | Add README.tcpmd5 to describe how to build a simple test setup and run tests. Convert compile time options to run time options [1]. Discussed with: rwatson Suggested by: rwatson [1]
* o expand usage comments; add cut&paste items for bozo's like mesam2007-11-191-18/+63
| | | | | | | | | | o add things i want to TODO list o add Record entry to each event which back-maps to the line # in the ktr file; useful for finding local context when the ktr file has lots of items that schedgraph doesn't grok o add missing KTR_SCHED event handlers o expose Counter max value through a ymax method for widget building o show timestamps in records rejected 'cuz time goes backwards
* Remove empty setup and cleanup functions for the pfkey test.bz2007-11-164-6/+268
| | | | | | | | | | | Add regression tests for privileged and supposedly unprivileged IP_IPSEC_POLICY,IPV6_IPSEC_POLICY setsockopt cases. We may need to review the current 'good' results to make sure they reflect what we really want. Discussed with: rwatson Reviewed by: rwatson
* In sys/netipsec/keysock.c rev. 1.19 a missing priv check was added.bz2007-11-134-0/+93
| | | | | | | Before that non-su users were able to open pfkey sockets as well. Add a regression test so we can detect such problems in an automated way in the future.
* - Fix the ktr header regexp so we match lines with very large indexes.jeff2007-11-121-4/+19
| | | | | - Add support for messages where cpu load is added to a remote cpu. - print unmatched lines to stdout
* s/maybe/may be/danger2007-11-061-1/+1
| | | | MFC after: 3 days
* o sync w/ net80211 changessam2007-11-031-147/+217
| | | | o redo numbering scheme to simplify changing the table
* align stats printed out w/o any argssam2007-11-031-2/+10
| | | | MFC after: 1 week
* o add -o ampdu shorthand for viewing most useful ampdu statssam2007-11-031-2/+7
| | | | | | o remove noise from default stat list MFC after: 1 week
* Merge Neterion if_nxge driver version 2.0.9.11230 with the followingrwatson2007-10-295-3146/+3384
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes: 01 - Enhanced LRO: LRO feature is extended to support multi-buffer mode. Previously, Ethernet frames received in contiguous buffers were offloaded. Now, frames received in multiple non-contiguous buffers can be offloaded, as well. The driver now supports LRO for jumbo frames. 02 - Locks Optimization: The driver code was re-organized to limit the use of locks. Moreover, lock contention was reduced by replacing wait locks with try locks. 03 - Code Optimization: The driver code was re-factored to eliminate some memcpy operations. Fast path loops were optimized. 04 - Tag Creations: Physical Buffer Tags are now optimized based upon frame size. For better performance, Physical Memory Maps are now re-used. 05 - Configuration: Features such as TSO, LRO, and Interrupt Mode can be configured either at load or at run time. Rx buffer mode (mode 1 or mode 2) can be configured at load time through kenv. 06 - Driver Statistics: Run time statistics are enhanced to provide better visibility into the driver performance. 07 - Bug Fixes: The driver contains fixes for the problems discovered and reported since last submission. 08 - MSI support: Added Message Signaled Interrupt feature which currently uses 1 message. 09 Removed feature: Rx 3 buffer mode feature has been removed. Driver now supports 1, 2 and 5 buffer modes of which 2 and 5 buffer modes can be used for header separation. 10 Compiler warning: Fixed compiler warning when compiled for 32 bit system. 11 Copyright notice: Source files are updated with the proper copyright notice. MFC after: 3 days Submitted by: Alicia Pena <Alicia dot Pena at neterion dot com>, Muhammad Shafiq <Muhammad dot Shafiq at neterion dot com>
* Hide geli warnings about sector size beeing bigger than the page size whenpjd2007-10-267-7/+7
| | | | doing regression testing.
* cached -> nscdru2007-10-191-1/+1
|
* Mdoc fix.obrien2007-10-091-2/+2
| | | | | Submitted by: ru Approved by: re(implicit)
* Correct lib name.obrien2007-10-091-1/+1
| | | | | Submitted by: ru Approved by: re(kensmith)
* Repo copy libpthreads to libkse.obrien2007-10-093-4/+12
| | | | | | This introduces the WITHOUT_LIBKSE nob, and changes WITHOUT_LIBPTHREADS to mean with neither threading libs. Approved by: re(kensmith)
* The exit status of a case statement where none of the patterns is matchedstefanf2007-10-041-0/+13
| | | | | | | | is supposed to be 0, not the status of the previous command. Reported by: Eygene Ryabinkin PR: 116559 Approved by: re (gnn)
* - Add cddl/lib to the list of library directories.ru2007-10-011-1/+2
| | | | | | | - Add /bin to PATH to suppress a harmless warning from a makefile that sets a variable using cat(1). Approved by: re (kensmith)
* The shell_1_sh test was failing with "make -jX".ru2007-10-011-1/+1
| | | | Approved by: re (kensmith)
* MK_LIBTHR was misspelled.ru2007-10-011-1/+1
| | | | Approved by: re (kensmith)
* Make the PCI code aware of PCI domains (aka PCI segments) so we canmarius2007-09-301-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | support machines having multiple independently numbered PCI domains and don't support reenumeration without ambiguity amongst the devices as seen by the OS and represented by PCI location strings. This includes introducing a function pci_find_dbsf(9) which works like pci_find_bsf(9) but additionally takes a domain number argument and limiting pci_find_bsf(9) to only search devices in domain 0 (the only domain in single-domain systems). Bge(4) and ofw_pcibus(4) are changed to use pci_find_dbsf(9) instead of pci_find_bsf(9) in order to no longer report false positives when searching for siblings and dupe devices in the same domain respectively. Along with this change the sole host-PCI bridge driver converted to actually make use of PCI domain support is uninorth(4), the others continue to use domain 0 only for now and need to be converted as appropriate later on. Note that this means that the format of the location strings as used by pciconf(8) has been changed and that consumers of <sys/pciio.h> potentially need to be recompiled. Suggested by: jhb Reviewed by: grehan, jhb, marcel Approved by: re (kensmith), jhb (PCI maintainer hat)
* Update structure name to follow the new IPsec code.gnn2007-09-191-1/+1
| | | | | Reported by: phk Approved by: re
* Enhance and expand kernel privilege regression tests in support ofrwatson2007-09-0942-2212/+3850
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | work present in FreeBSD 7.0 to refine the kernel privilege model: - Introduce support for jail as a testing variable, in order to confirm that privileges are properly restricted in the jail environment. - Restructure overall testing approach so that privilege and jail conditions are set in the testing infrastructure before tests are invoked, and done so in a custom-created process to isolate the impact of tests from each other in a more consistent way. - Tests now provide setup and cleanup hooks that occur before and after the test runs. - New privilege tests are now present for several audit privileges, several credential management privileges, dmesg buffer reading privilege, and netinet raw socket creation. - Other existing tests are restructured and generally improved as a result of better framework structure and jail as a variable. For exampe, we now test that certain sysctls are writable only outside jail, while others are writable within jail. On a similar note, privileges relating to setting UFS file flags are now better exercised, as with the right to chmod and utimes files. Approved by: re (bmah) Obtained from: TrustedBSD Project
* Add support for Camellia encryption algorithm.pjd2007-09-017-14/+21
| | | | | | PR: kern/113790 Submitted by: Yoshisato YANAGISAWA <yanagisawa@csg.is.titech.ac.jp> Approved by: re (bmah)
* Add WITHOUT_ZONEINFO to the build options and regenerate src.conf.5remko2007-08-271-0/+2
| | | | | | Reminded by: ceri Approved by: re (bmah) Approved by: imp (mentor)
* Add option to not fill second code image, this makes the full diskphk2007-08-261-3/+10
| | | | | | | | | image compress much better. Respect pkg_add's internal 200 package limitation. Approved by: re (bmah) Spelling fixes by: bmah
* Bring in two fixes for TinyBSD:remko2007-08-228-7/+8
| | | | | | | | | | | | | | - Add the bind mtree to the TinyBSD build so that files can be installed there (else the build fails) - Change GEOM_GPT to GEOM_PART_GPT since that had been renamed in current. The kernel configuration provided by TinyBSD will not build without these changes. PR: misc/115484 PR: misc/115405 Submitted by: Richard Arends <richard at unixguru dot nl> Approved by: re (bmah) Approved by: imp (mentor)
* New regression test updates for rename, etc.delphij2007-08-103-6/+58
| | | | | Obtained from: NetBSD Approved by: re (tmpfs blanket)
* Add regression tests for flopen(3).des2007-08-033-1/+189
| | | | Approved by: re (blanket)
* wlandebug has been moved to the base system.thompsa2007-07-285-435/+1
| | | | Approved by: re (rwatson)
* Added environ-replacement detection. For programs that "clean" (i.e., su)scf2007-07-203-34/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | or replace (i.e., zdump) the environment after a call to setenv(), putenv() or unsetenv() has been made, a few changes were made. - getenv() will return the value from the new environ array. - setenv() was split into two functions: __setenv() which is most of the previous setenv() without checks on the name and setenv() which contains the checks before calling __setenv(). - setenv(), putenv() and unsetenv() will unset all previous values and call __setenv() on all entries in the new environ array which in turn adds them to the end of the envVars array. Calling __setenv() instead of setenv() is done to avoid the temporary replacement of the '=' in a string with a NUL byte. Some strings may be read-only data. Added more regression checks for clearing the environment array. Replaced gettimeofday() with getrusage() in timing regression check for better accuracy. Fixed an off-by-one bug in __remove_putenv() in the use of memmove(). This went unnoticed due to the allocation of double the number of environ entries when building envVars. Fixed a few spelling mistakes in the comments. Reviewed by: ache Approved by: wes Approved by: re (kensmith)
OpenPOWER on IntegriCloud