spec test index / oilshell.org
116 passed, 0 ok, 2 known unimplemented, 0 known bugs, 2 failed, 0 skipped
dash | 23 IFS empty doesn't do splitting stdout: ['-e a b\tc']stderr: |
dash | 24 IFS unset behaves like $' \t\n' stdout: ['-e', 'a', 'b', 'c']stderr: |
osh | 25 IFS='\' [osh stdout] Expected "['a', 'b']\n", got "['a', '', '', '', 'b']\n" stdout: ['a', '', '', '', 'b']stderr: |
osh | 26 IFS='\ ' [osh stdout] Expected "['a', 'b', '', 'c', 'd']\n", got "['a', '', '', '', 'b', '', '', '', '', '', '', '', 'c', 'd', '', '', '']\n" stdout: ['a', '', '', '', 'b', '', '', '', '', '', '', '', 'c', 'd', '', '', '']stderr: |