Results for ysh-env.test.sh

statusoshosh-cpp
pass 55
FAIL 44
total99
caseoshosh-cppdescription
0pass pass Can read from ENV Dict
1pass pass YSH doesn't have exported vars (declare -x)
2FAIL FAIL Temp bindings A=a B=b my-command push to ENV dict
detailsdetails
3pass pass setglobal ENV.PYTHONPATH = 'foo' changes child process state
4FAIL FAIL export builtin is disabled, in favor of setglobal
detailsdetails
5FAIL FAIL PS4 environment variable is respected
detailsdetails
6pass pass ENV works in different modules
7FAIL FAIL HOME var
detailsdetails
8pass pass exec builtin respects ENV
10 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 29702: command.Pipeline failed with status 1
osh-cpp2 Temp bindings A=a B=b my-command push to ENV dict

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

stdout:
stderr: 
  _A=a _B=b env | grep '^_' | sort
                  ^~~~
[ stdin ]:3: errexit PID 29715: 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:
osh-cpp4 export builtin is disabled, in favor of setglobal

[osh-cpp stdout] Expected 'pythonpath=foo\n', got 'pythonpath=\n'

stdout:
pythonpath=
stderr:
osh5 PS4 environment variable is respected

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

stdout:
1
2
stderr:
%%% echo 1
%%% echo 2
osh-cpp5 PS4 environment variable is respected

[osh-cpp 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
osh-cpp7 HOME var

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

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