spec test index / oilshell.org
| status | ysh | ysh_ALT | |
| pass | 9 | 9 | |
| FAIL | 4 | 4 | |
| total | 13 | 13 | |
| case | ysh | ysh_ALT | description |
| 0 | pass | pass | fastlex: NUL byte not allowed inside char literal #' ' |
| 1 | pass | pass | fastlex: NUL byte inside shebang line |
| 2 | pass | pass | Tea keywords don't interfere with YSH expressions |
| 3 | pass | pass | Catch AttributeError |
| 4 | pass | pass | Command sub paren parsing bug (#1387) |
| 5 | pass | pass | More Command sub paren parsing |
| 6 | pass | pass | don't execute empty command |
| 7 | FAIL | FAIL | Do && || with YSH constructs make sense/ |
| details | details | ||
| 8 | FAIL | FAIL | shvar then replace - bug #1986 context manager crash |
| details | details | ||
| 9 | pass | pass | Parsing crash - bug #2003 |
| 10 | FAIL | FAIL | proc with IFS= read -r line - dynamic scope - issue #2012 |
| details | details | ||
| 11 | FAIL | FAIL | func call inside proc call - error message attribution |
| details | details | ||
| 12 | pass | pass | Crash in parsing case on EOF condition - issue #2037 |
18 passed, 0 OK, 0 not implemented, 0 BUG, 8 failed, 0 timeouts, 0 cases skipped 4 failed under osh
| ysh | 7 Do && || with YSH constructs make sense/ [ysh stdout] Expected '', got '(List) [42]\n(Int) 42\n(Int) 42\n' stdout: (List) [42] (Int) 42 (Int) 42stderr: |
| ysh_ALT | 7 Do && || with YSH constructs make sense/ [ysh_ALT stdout] Expected '', got '(List) [42]\n(Int) 42\n(Int) 42\n' stdout: (List) [42] (Int) 42 (Int) 42stderr: |
| ysh | 8 shvar then replace - bug #1986 context manager crash [ysh stdout] Expected 'world\n', got '' [ysh status] Expected 0, got 1 stdout: stderr: echo $Q
^~
[ stdin ]:9: fatal: Undefined variable 'Q'
|
| ysh_ALT | 8 shvar then replace - bug #1986 context manager crash [ysh_ALT stdout] Expected 'world\n', got '' [ysh_ALT status] Expected 0, got 2 stdout: stderr: source --builtin ysh/shvar.ysh
^~~
[ stdin ]:1: source failed: No builtin file 'stdlib/ysh/shvar.ysh'
source --builtin ysh/shvar.ysh
^~~~~~
[ stdin ]:1: errexit PID 35947: command.Simple failed with status 2
|
| ysh | 10 proc with IFS= read -r line - dynamic scope - issue #2012 [ysh stdout] Expected 'zz\nyy\n', got 'zz\n' [ysh status] Expected 0, got 1 stdout: zzstderr: write $line
^~~~~
[ stdin ]:8: fatal: Undefined variable 'line'
echo yy | p-ifs
^~~~~
[ stdin ]:14: errexit PID 35960: command.Pipeline failed with status 1
|
| ysh_ALT | 10 proc with IFS= read -r line - dynamic scope - issue #2012 [ysh_ALT stdout] Expected 'zz\nyy\n', got 'zz\n' [ysh_ALT status] Expected 0, got 1 stdout: zzstderr: write $line
^~~~~
[ stdin ]:8: fatal: Undefined variable 'line'
echo yy | p-ifs
^~~~~
[ stdin ]:14: errexit PID 35965: command.Pipeline failed with status 1
|
| ysh | 11 func call inside proc call - error message attribution [ysh stdout] Expected '', got ' eval (ident([1,2,3]))\n ^\n[ -c flag ]:11: fatal: Arg 1 should be a Command, got List\n' stdout: eval (ident([1,2,3]))
^
[ -c flag ]:11: fatal: Arg 1 should be a Command, got List
stderr: |
| ysh_ALT | 11 func call inside proc call - error message attribution [ysh_ALT stdout] Expected '', got ' eval (ident([1,2,3]))\n ^\n[ -c flag ]:11: fatal: Arg 1 should be a Command, got List\n' stdout: eval (ident([1,2,3]))
^
[ -c flag ]:11: fatal: Arg 1 should be a Command, got List
stderr: |