spec test index / oilshell.org
status | osh | osh_.py | osh_.cc | |
pass | 8 | 7 | 5 | |
FAIL | 0 | 1 | 3 | |
total | 8 | 8 | 8 | |
case | osh | osh_.py | osh_.cc | description |
0 | pass | pass | FAIL | Locals don't leak |
details | ||||
1 | pass | pass | pass | Globals leak |
2 | pass | pass | pass | Return statement |
3 | pass | pass | pass | Dynamic Scope |
4 | pass | pass | pass | Dynamic Scope Mutation (wow this is bad) |
5 | pass | pass | pass | Assign local separately |
6 | pass | pass | FAIL | Assign a local and global on same line |
details | ||||
7 | pass | FAIL | FAIL | Return without args gives previous |
details | details |
20 passed, 0 OK, 0 not implemented, 0 BUG, 4 failed, 0 timeouts, 0 cases skipped
osh_.cc | 0 Locals don't leak [osh_.cc stdout] Expected '\n', got 'f_var\n' stdout: f_varstderr: |
osh_.cc | 6 Assign a local and global on same line [osh_.cc stdout] Expected u'[L G]\n[ G]\n', got '[L G]\n[L G]\n' stdout: [L G] [L G]stderr: |
osh_.py | 7 Return without args gives previous [osh_.py stdout] Expected 'status=42\n', got 'status=0\n' stdout: status=0stderr: |
osh_.cc | 7 Return without args gives previous [osh_.cc stdout] Expected 'status=42\n', got 'status=0\n' stdout: status=0stderr: |