spec test index / oilshell.org
status | osh | osh-cpp | |
pass | 5 | 5 | |
N-I | 4 | 4 | |
total | 9 | 9 | |
case | osh | osh-cpp | description |
0 | pass | pass | ${##} |
1 | N-I | N-I | ${###} |
details | details | ||
2 | N-I | N-I | ${####} |
details | details | ||
3 | N-I | N-I | ${##2} |
details | details | ||
4 | N-I | N-I | ${###2} |
details | details | ||
5 | pass | pass | ${1####} |
6 | pass | pass | ${1#'###'} |
7 | pass | pass | ${#1#'###'} |
8 | pass | pass | Julia example from spec/oil-user-feedback |
10 passed, 0 OK, 8 not implemented, 0 BUG, 0 failed, 0 timeouts, 0 cases skipped
osh | 1 ${###} stdout: stderr: echo ${###} ^ [ stdin ]:2: Expected } after length expression |
osh-cpp | 1 ${###} stdout: stderr: echo ${###} ^ [ stdin ]:2: Expected } after length expression |
osh | 2 ${####} stdout: stderr: echo ${####} ^~ [ stdin ]:2: Expected } after length expression |
osh-cpp | 2 ${####} stdout: stderr: echo ${####} ^~ [ stdin ]:2: Expected } after length expression |
osh | 3 ${##2} stdout: stderr: echo ${##2} ^ [ stdin ]:2: Expected } after length expression |
osh-cpp | 3 ${##2} stdout: stderr: echo ${##2} ^ [ stdin ]:2: Expected } after length expression |
osh | 4 ${###2} stdout: stderr: echo ${###2} ^ [ stdin ]:2: Expected } after length expression |
osh-cpp | 4 ${###2} stdout: stderr: echo ${###2} ^ [ stdin ]:2: Expected } after length expression |