Results for ysh-env.test.sh

statusosh
pass 5
FAIL 4
total9
caseoshdescription
0pass Can read from ENV Dict
1pass YSH doesn't have exported vars (declare -x)
2FAIL Temp bindings A=a B=b my-command push to ENV dict
details
3pass setglobal ENV.PYTHONPATH = 'foo' changes child process state
4FAIL export builtin is disabled, in favor of setglobal
details
5FAIL PS4 environment variable is respected
details
6pass ENV works in different modules
7FAIL HOME var
details
8pass exec builtin respects ENV
5 passed, 0 OK, 0 not implemented, 0 BUG, 4 failed, 0 timeouts, 0 cases skipped
4 failed under osh

Details on runs that didn't PASS

osh2 Temp bindings A=a B=b my-command push to ENV dict

[osh stdout] Expected '_A=a\n_B=b\n', got ''
[osh status] Expected 0, got 1

stdout:
stderr: 
  _A=a _B=b env | grep '^_' | sort
                  ^~~~
[ stdin ]:3: errexit PID 38293: command.Pipeline failed with status 1
osh4 export builtin is disabled, in favor of setglobal

[osh stdout] Expected 'pythonpath=foo\n', got 'pythonpath=/home/uke/oil:/home/uke/oil/vendor\n'

stdout:
pythonpath=/home/uke/oil:/home/uke/oil/vendor
stderr:
osh5 PS4 environment variable is respected

[osh stdout] Expected 'TODO\n', got '1\n2\n'

stdout:
1
2
stderr:
%%% echo 1
%%% echo 2
osh7 HOME var

[osh stdout] Expected '', got '/home/uke\n'
[osh status] Expected 0, got 3

stdout:
/home/uke
stderr:
  echo $[ENV.HOME]
            ^
[ stdin ]:6: fatal: Dict entry 'HOME' not found