spec test index / oilshell.org
| status | osh | osh_.py | osh_.cc | |
| FAIL | 2 | 2 | 2 | |
| total | 2 | 2 | 2 | |
| case | osh | osh_.py | osh_.cc | description |
| 0 | FAIL | FAIL | FAIL | let |
| details | details | details | ||
| 1 | FAIL | FAIL | FAIL | let with () |
| details | details | details |
0 passed, 0 OK, 0 not implemented, 0 BUG, 6 failed, 0 timeouts, 0 cases skipped 2 failed under osh
| osh | 0 let [osh stdout] Expected '1 3 9 9\n', got '\n' stdout: stderr: let x=1 ^~~ [ stdin ]:1: 'let' not found let y=x+2 ^~~ [ stdin ]:2: 'let' not found let z=y*3 # zsh treats this as a glob; bash doesn't ^~~ [ stdin ]:3: 'let' not found let z2='y*3' # both are OK with this ^~~ [ stdin ]:4: 'let' not found |
| osh_.py | 0 let [osh_.py stdout] Expected '1 3 9 9\n', got '\n' stdout: stderr: let x=1 ^~~ [ stdin ]:1: 'let' not found let y=x+2 ^~~ [ stdin ]:2: 'let' not found let z=y*3 # zsh treats this as a glob; bash doesn't ^~~ [ stdin ]:3: 'let' not found let z2='y*3' # both are OK with this ^~~ [ stdin ]:4: 'let' not found |
| osh_.cc | 0 let [osh_.cc stdout] Expected '1 3 9 9\n', got '\n' stdout: stderr: let x=1 ^~~ [ stdin ]:1: 'let' not found let y=x+2 ^~~ [ stdin ]:2: 'let' not found let z=y*3 # zsh treats this as a glob; bash doesn't ^~~ [ stdin ]:3: 'let' not found let z2='y*3' # both are OK with this ^~~ [ stdin ]:4: 'let' not found dumb_alloc: gNumNew = 2489 gNumDelete = 244 gMemPos = 84416 gNumMalloc = 235 gNumFree = 0 gMemPos2 = 13024 |
| osh | 1 let with () [osh stdout] Expected '1 3 9\n', got '' [osh status] Expected 0, got 1 stdout: stderr: let x=( 1 )
^
[ stdin ]:1: fatal: Unexpected array literal
|
| osh_.py | 1 let with () [osh_.py stdout] Expected '1 3 9\n', got '' [osh_.py status] Expected 0, got 1 stdout: stderr: let x=( 1 )
^
[ stdin ]:1: fatal: Unexpected array literal
|
| osh_.cc | 1 let with () [osh_.cc stdout] Expected '1 3 9\n', got '' [osh_.cc status] Expected 0, got 1 stdout: stderr: let x=( 1 ) ^~~ [ stdin ]:1: fatal: Unexpected array literal dumb_alloc: gNumNew = 1684 gNumDelete = 106 gMemPos = 59264 gNumMalloc = 47 gNumFree = 0 gMemPos2 = 9936 |