aboutsummaryrefslogtreecommitdiff
path: root/sys/tests/framework
Commit message (Collapse)AuthorAgeFilesLines
* tests: Stop checking for failures from malloc(M_WAITOK)Zhenlei Huang2024-09-301-8/+0
| | | | | | | | MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D45852 (cherry picked from commit aac6c41d4ba9b0a1aef561f6c4bfd284ab369ebf) (cherry picked from commit 6a0ed6fe27ecd9f9b51a6c29bc15f5dbf2ab6c4a)
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-231-2/+0
| | | | | | | Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/ Similar commit in current: (cherry picked from commit 685dc743dc3b)
* Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (17 of many)Pawel Biernacki2020-02-261-3/+6
| | | | | | | | | | | | | | | | | | | r357614 added CTLFLAG_NEEDGIANT to make it easier to find nodes that are still not MPSAFE (or already are but aren’t properly marked). Use it in preparation for a general review of all nodes. This is non-functional change that adds annotations to SYSCTL_NODE and SYSCTL_PROC nodes using one of the soon-to-be-required flags. Mark all obvious cases as MPSAFE. All entries that haven't been marked as MPSAFE before are by default marked as NEEDGIANT Approved by: kib (mentor, blanket) Commented by: kib, gallatin, melifaro Differential Revision: https://reviews.freebsd.org/D23718 Notes: svn path=/head/; revision=358333
* Regularize the Netflix copyrightWarner Losh2019-02-041-2/+1
| | | | | | | | | | | | | | | Use recent best practices for Copyright form at the top of the license: 1. Remove all the All Rights Reserved clauses on our stuff. Where we piggybacked others, use a separate line to make things clear. 2. Use "Netflix, Inc." everywhere. 3. Use a single line for the copyright for grep friendliness. 4. Use date ranges in all places for our stuff. Approved by: Netflix Legal (who gave me the form), adrian@ (pmc files) Notes: svn path=/head/; revision=343755
* style(9): sort headers and remove duplicatesEnji Cooper2017-05-091-4/+2
| | | | | | | | MFC after: 3 weeks Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=318006
* Style 9 changes.Randall Stewart2015-11-121-38/+39
| | | | | | | MFC after: 1 Month Notes: svn path=/head/; revision=290714
* Remove redundant declaration for sysctl kern.Bryan Drewery2015-11-111-1/+0
| | | | | | | | | | This is trying to fix the GCC build. MFC after: 1 month X-MFC-With: r290663 Notes: svn path=/head/; revision=290676
* Add a kernel test framework. The callout_test is a demonstration and will onlyRandall Stewart2015-11-101-0/+343
work with the upcoming async-drain functionality. Tests can be added to the tests directory and then the framework can be used to launch those tests. MFC after: 1 month Sponsored by: Netflix Inc. Differential Revision: https://reviews.freebsd.org/D1755 Notes: svn path=/head/; revision=290663