status | osh | osh-cpp | |
pass | 24 | 24 | |
FAIL | 1 | 1 | |
total | 25 | 25 | |
case | osh | osh-cpp | description |
0 | pass | pass | sh -i |
1 | pass | pass | \[\] are non-printing |
2 | pass | pass | literal escapes |
3 | pass | pass | special case for $ |
4 | pass | pass | PS1 evaluation order |
5 | pass | pass | PS1 evaluation order 2 |
6 | pass | pass | \1004 |
7 | pass | pass | \001 octal literals are supported |
8 | pass | pass | \555 is beyond max octal byte of \377 and wrapped to m |
9 | pass | pass | \x55 hex literals not supported |
10 | pass | pass | Single backslash |
11 | pass | pass | Escaped backslash |
12 | pass | pass | \0001 octal literals are not supported |
13 | pass | pass | \u0001 unicode literals not supported |
14 | pass | pass | constant string |
15 | pass | pass | hostname |
16 | pass | pass | username |
17 | pass | pass | current working dir |
18 | pass | pass | \W is basename of working dir |
19 | pass | pass | \A for 24 hour time |
20 | pass | pass | \D{%H:%M} for strftime |
21 | pass | pass | \D{} for locale specific strftime |
22 | pass | pass | \s and \v for shell and version |
23 | FAIL | FAIL | @P with array |
details | details | ||
24 | pass | pass | default PS1 |
48 passed, 0 OK, 0 not implemented, 0 BUG, 1 failed, 0 timeouts, 0 cases skipped 1 failed under osh
osh | 23 @P with array [osh stdout] Expected 'status=1\nstatus=1\nx\nstatus=0\n', got 'a b c\nstatus=0\na b c\nstatus=0\nx\nstatus=0\n' stdout: a b c status=0 a b c status=0 x status=0stderr: |
osh-cpp | 23 @P with array [osh-cpp stdout] Expected 'status=1\nstatus=1\nx\nstatus=0\n', got 'a b c\nstatus=0\na b c\nstatus=0\nx\nstatus=0\n' stdout: a b c status=0 a b c status=0 x status=0stderr: |