89 passed, 4 ok, 3 known unimplemented, 4 known bugs, 4 failed, 0 skipped
osh | 12 Backslash escapes inside double quoted string [osh stdout] Expected '$ \\ \\ \\p \\q\n', got '$ \\ \\ p q\n' stdout: $ \ \ p qstderr: |
dash | 13 C-style backslash escapes inside double quoted string stdout: stderr: |
mksh | 13 C-style backslash escapes inside double quoted string stdout: stderr: |
osh | 13 C-style backslash escapes inside double quoted string [osh stdout] Expected '\\a \\b\n', got 'a b\n' stdout: a bstderr: |
bash | 17 $? split over multiple lines stdout: 0stderr: |
mksh | 17 $? split over multiple lines stdout: 0stderr: |
mksh | 18 Unterminated single quote stdout: stderr: /bin/mksh: <stdin>[2]: no closing quote |
mksh | 19 Unterminated double quote stdout: stderr: /bin/mksh: <stdin>[2]: no closing quote |
dash | 21 No tab escapes within single quotes stdout: a bstderr: |
mksh | 21 No tab escapes within single quotes stdout: a bstderr: |
dash | 22 $'' stdout: $foostderr: |
dash | 23 $'' with newlines stdout: $col1 col2 col3stderr: |
osh | 23 $'' with newlines [osh stdout] Expected u'col1\ncol2\ncol3\n', got 'col1\\ncol2\\ncol3\n' stdout: col1\ncol2\ncol3stderr: |
dash | 24 $"" stdout: $foostderr: |
osh | 25 printf [osh stdout] Expected u'c1\tc2\nc3\tc4\n', got 'c1tc2nc3tc4n' stdout: c1tc2nc3tc4nstderr: |