spec test index / oilshell.org
| status | osh | osh-cpp | |
| pass | 10 | 10 | |
| FAIL | 1 | 1 | |
| total | 11 | 11 | |
| case | osh | osh-cpp | description | 
| 0 | pass | pass | Locals don't leak | 
| 1 | pass | pass | Globals leak | 
| 2 | pass | pass | Return statement | 
| 3 | pass | pass | Dynamic Scope | 
| 4 | pass | pass | Dynamic Scope Mutation (wow this is bad) | 
| 5 | pass | pass | Assign local separately | 
| 6 | pass | pass | Assign a local and global on same line | 
| 7 | pass | pass | Return without args gives previous | 
| 8 | pass | pass | return "" (a lot of disagreement) | 
| 9 | pass | pass | return $empty | 
| 10 | FAIL | FAIL | Subshell function | 
| details | details | 
20 passed, 0 OK, 0 not implemented, 0 BUG, 2 failed, 0 timeouts, 0 cases skipped 1 failed under osh
| osh | 10 Subshell function [osh stdout] Expected 'status=42\nstatus=42\n', got 'status=42\n' [osh status] Expected 0, got 1 stdout: status=42stderr:   g() ( return 42 )
        ^~~~~~
[ stdin ]:2: fatal: Invalid control flow 'return' in pipeline / subshell / background
 | 
| osh-cpp | 10 Subshell function [osh-cpp stdout] Expected 'status=42\nstatus=42\n', got 'status=42\n' [osh-cpp status] Expected 0, got 1 stdout: status=42stderr:   g() ( return 42 )
        ^~~~~~
[ stdin ]:2: fatal: Invalid control flow 'return' in pipeline / subshell / background
 |