spec test index / oilshell.org
status | osh | |
pass | 3 | |
FAIL | 4 | |
total | 7 | |
case | osh | description |
0 | pass | Can read from ENV Dict |
1 | FAIL | YSH doesn't have exported vars (declare -x) |
details | ||
2 | pass | Temp bindings A=a B=b my-command push to ENV dict |
3 | FAIL | setglobal ENV.PYTHONPATH = 'foo' changes child process state |
details | ||
4 | pass | export builtin still works |
5 | FAIL | PS4 environment variable is respected |
details | ||
6 | FAIL | ENV works in different modules |
details |
3 passed, 0 OK, 0 not implemented, 0 BUG, 4 failed, 0 timeouts, 0 cases skipped 4 failed under osh
osh | 1 YSH doesn't have exported vars (declare -x) [osh stdout] Expected 'OSH ok\nsh=null\n', got 'OSH ok\nsh=/home/uke/oil/bin/osh\n' stdout: OSH ok sh=/home/uke/oil/bin/oshstderr: |
osh | 3 setglobal ENV.PYTHONPATH = 'foo' changes child process state [osh stdout] Expected '', got '(Dict) {"TMP":"/home/uke/oil/_tmp/spec-tmp/ysh-env.test.sh.38245/03-osh","REPO_ROOT":"/home/uke/oil","PYTHONPATH":"foo","PWD":"/home/uke/oil/_tmp/spec-tmp/ysh-env.test.sh.38245/03-osh","SH":"/home/uke/oil/bin/osh","LC_ALL":"C.UTF-8","PATH":"/home/uke/oil/test/../spec/bin:/wedge/oils-for-unix.org/pkg/re2c/3.0/bin:/wedge/oils-for-unix.org/pkg/python3/3.10.4/bin:/wedge/oils-for-unix.org/pkg/re2c/3.0/bin:/wedge/oils-for-unix.org/pkg/python3/3.10.4/bin:/wedge/oils-for-unix.org/pkg/re2c/3.0/bin:/wedge/oils-for-unix.org/pkg/python3/3.10.4/bin:/wedge/oils-for-unix.org/pkg/re2c/3.0/bin:/wedge/oils-for-unix.org/pkg/python3/3.10.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","LOCALE_ARCHIVE":"","OILS_GC_ON_EXIT":""}\npythonpath=/home/uke/oil:/home/uke/oil/vendor\n' stdout: (Dict) {"TMP":"/home/uke/oil/_tmp/spec-tmp/ysh-env.test.sh.38245/03-osh","REPO_ROOT":"/home/uke/oil","PYTHONPATH":"foo","PWD":"/home/uke/oil/_tmp/spec-tmp/ysh-env.test.sh.38245/03-osh","SH":"/home/uke/oil/bin/osh","LC_ALL":"C.UTF-8","PATH":"/home/uke/oil/test/../spec/bin:/wedge/oils-for-unix.org/pkg/re2c/3.0/bin:/wedge/oils-for-unix.org/pkg/python3/3.10.4/bin:/wedge/oils-for-unix.org/pkg/re2c/3.0/bin:/wedge/oils-for-unix.org/pkg/python3/3.10.4/bin:/wedge/oils-for-unix.org/pkg/re2c/3.0/bin:/wedge/oils-for-unix.org/pkg/python3/3.10.4/bin:/wedge/oils-for-unix.org/pkg/re2c/3.0/bin:/wedge/oils-for-unix.org/pkg/python3/3.10.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","LOCALE_ARCHIVE":"","OILS_GC_ON_EXIT":""} pythonpath=/home/uke/oil:/home/uke/oil/vendorstderr: |
osh | 5 PS4 environment variable is respected [osh stdout] Expected 'TODO\n', got '1\n2\n' stdout: 1 2stderr: + echo 1 + echo 2 |
osh | 6 ENV works in different modules [osh stdout] Expected 'TODO\n', got 'env.ysh\n' [osh status] Expected 0, got 1 stdout: env.yshstderr: if (ENV.SH ~~ '*osh') { ^~~ /home/uke/oil/spec/testdata/module2/env.ysh:4: fatal: Undefined variable 'ENV' use $[ENV.REPO_ROOT]/spec/testdata/module2/env.ysh ^~~ [ stdin ]:5: errexit PID 38281: command.Simple failed with status 1 |