aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/usr.bin/env/regress-env.rgdata
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* env: Fix crash when -S string is not empty but no operand follows.Jilles Tjoelker2015-03-081-0/+33
| | | | | | | | | | | | | | | split_spaces() set argc in main() incorrectly, which caused trouble for getopt(). Examples: env -S '\c' env -S -i PR: 197769 MFC after: 1 week Notes: svn path=/head/; revision=279779
* env: Fix testsuite for additional variables set by sh.Jilles Tjoelker2015-03-071-3/+3
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=279722
* Correct one regression test (which was expected an incorrect answer), andGarance A Drosehn2005-07-151-1/+66
| | | | | | | add a few more tests. This matches bug fixes recently committed to 'env'. Notes: svn path=/head/; revision=148024
* 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-201-0/+244
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