spec test index / oilshell.org
146 passed, 0 OK, 2 not implemented, 7 BUG, 0 failed, 0 timeouts, 0 cases skipped
| dash | 15 errexit with (( )) stdout: stderr: dash: 3: i++: not found |
| ash | 15 errexit with (( )) stdout: stderr: ash: i++: not found |
| dash | 26 compound command stdout: status=2 should not get herestderr: dash: 3: cannot open not_exist.txt: No such file |
| bash | 26 compound command stdout: status=1 should not get herestderr: bash: line 3: not_exist.txt: No such file or directory |
| ash | 26 compound command stdout: status=1 should not get herestderr: ash: can't open not_exist.txt: no such file |
| dash | 27 while loop stdout: status=2 should not get herestderr: dash: 3: cannot open not_exist.txt: No such file |
| bash | 27 while loop stdout: status=1 should not get herestderr: bash: line 5: not_exist.txt: No such file or directory |
| ash | 27 while loop stdout: status=1 should not get herestderr: ash: can't open not_exist.txt: no such file |
| bash | 29 set -e in function #2 stdout: stderr: |