env: Fix testsuite for additional variables set by sh.
MFC after: 1 week
This commit is contained in:
parent
a340dc5348
commit
aad75bd7db
@ -235,9 +235,9 @@ gblenv=OUTSIDEVAR=OutsideValue
|
||||
script:/bin/echo "=== set ==="
|
||||
script:# drop some environment variables that 'sh' itself sets, and
|
||||
script:# then have 'set' print out all remaining environment variables.
|
||||
script:# (can't unset OPTIND, so we use grep to get rid of that)
|
||||
script:unset -v IFS PS1 PS2 PPID
|
||||
script:set | grep -v '^OPTIND=' | sort
|
||||
script:# (can't unset OPTIND/PWD, so we use grep to get rid of those)
|
||||
script:unset -v IFS PS1 PS2 PS4 PPID
|
||||
script:set | grep -Ev '^(OPTIND|PWD)=' | sort
|
||||
stdout:=== set ===
|
||||
stdout:PATH=/bin:/usr/bin:/Not
|
||||
stdout:TESTVAR=SbValue
|
||||
|
Loading…
Reference in New Issue
Block a user