Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: alt two-line .c patternRemove /^\s*__RCSID\("\$FreeBSD\$"\);\n\n/
procstat/tests: Fix flakiness by waiting for program to startSome of the procstat tests start a program "while1" and examine the processusing procstat, but did not wait properly for it to start (k
procstat/tests: Fix flakiness by waiting for program to startSome of the procstat tests start a program "while1" and examine the processusing procstat, but did not wait properly for it to start (kill -0 willsucceed immediately after the child process has been created).Instead, have "while1" write something when it starts, and use a fifo towait for that.PR: 233587, 233588Reviewed by: ngieMFC after: 1 weekDifferential Revision: https://reviews.freebsd.org/D21519
show more ...
Update the spelling of my namePrevious spellings of my name (NGie, Ngie) weren't my legal spelling. Use Enjiinstead for clarity.While here, remove "All Rights Reserved" from copyrights I "own".
Update the spelling of my namePrevious spellings of my name (NGie, Ngie) weren't my legal spelling. Use Enjiinstead for clarity.While here, remove "All Rights Reserved" from copyrights I "own".MFC after: 1 week
Temporarily skip flakey test casesPR: 233586, 233587, 233588Approved by: markj (mentor)Sponsored by: The FreeBSD FoundationDifferential Revision: https://reviews.freebsd.org/D18362
Add a rudimentary test for procstat kstack.MFC after: 1 week
DIRDEPS_BUILD: Connect new directories.Sponsored by: Dell EMC Isilon
Switch procstat from subcommand flags to verbs- Use an enumerated value instead of separate flags for commands- Look for a verb if no command flag is set- Lookup the "xocontainer" value based on
Switch procstat from subcommand flags to verbs- Use an enumerated value instead of separate flags for commands- Look for a verb if no command flag is set- Lookup the "xocontainer" value based on the command- Document the new command verbs in the man-pageSubmitted by: kdrakehp@zoho.comDifferential Revision: https://reviews.freebsd.org/D10916
Start writing up some basic feature tests for procstatThese tests query a running process for information related to the -b,-c, -e, and -f flags; the -f testcase is largely stubbed out, pendingad
Start writing up some basic feature tests for procstatThese tests query a running process for information related to the -b,-c, -e, and -f flags; the -f testcase is largely stubbed out, pendingadditional work to determine a good, deterministic descriptor.Core file test support is coming soon--it requires a bit more effortdue to the fact that:- coredumps can be disabled (kern.coredump=0).- corefiles can be put in different directories than the current directory, or be named something other than `<prog>.core` (`kern.corefile`).MFC after: 2 monthsSponsored by: Dell EMC Isilon