spec test index / oilshell.org
status | osh | osh-cpp | |
pass | 5 | 5 | |
FAIL | 4 | 4 | |
total | 9 | 9 | |
case | osh | osh-cpp | description |
0 | pass | pass | Can read from ENV Dict |
1 | pass | pass | YSH doesn't have exported vars (declare -x) |
2 | FAIL | FAIL | Temp bindings A=a B=b my-command push to ENV dict |
details | details | ||
3 | pass | pass | setglobal ENV.PYTHONPATH = 'foo' changes child process state |
4 | FAIL | FAIL | export builtin is disabled, in favor of setglobal |
details | details | ||
5 | FAIL | FAIL | PS4 environment variable is respected |
details | details | ||
6 | pass | pass | ENV works in different modules |
7 | FAIL | FAIL | HOME var |
details | details | ||
8 | pass | 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
osh | 2 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-cpp | 2 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 |
osh | 4 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/vendorstderr: |
osh-cpp | 4 export builtin is disabled, in favor of setglobal [osh-cpp stdout] Expected 'pythonpath=foo\n', got 'pythonpath=\n' stdout: pythonpath=stderr: |
osh | 5 PS4 environment variable is respected [osh stdout] Expected 'TODO\n', got '1\n2\n' stdout: 1 2stderr: %%% echo 1 %%% echo 2 |
osh-cpp | 5 PS4 environment variable is respected [osh-cpp stdout] Expected 'TODO\n', got '1\n2\n' stdout: 1 2stderr: %%% echo 1 %%% echo 2 |
osh | 7 HOME var [osh stdout] Expected '', got '/home/uke\n' [osh status] Expected 0, got 3 stdout: /home/ukestderr: echo $[ENV.HOME] ^ [ stdin ]:6: fatal: Dict entry 'HOME' not found |
osh-cpp | 7 HOME var [osh-cpp stdout] Expected '', got '/home/uke\n' [osh-cpp status] Expected 0, got 3 stdout: /home/ukestderr: echo $[ENV.HOME] ^ [ stdin ]:6: fatal: Dict entry 'HOME' not found |