Results for ysh-builtins.test.sh

statusosh
pass 28
FAIL 3
total31
caseoshdescription
0pass append onto BashArray a=(1 2)
1pass append onto var a = :| 1 2 |
2pass append onto var a = ['1', '2']
3pass append without typed arg
4pass append passed invalid type
5pass write --sep, --end, -n, varying flag syntax
6pass write --json
7pass write --j8
8pass write -e not supported
9pass write syntax error
10pass write --
11pass read flag usage
12pass read :x :y is allowed
13pass read (&x) is usage error
14pass read --line --with-eol
15FAIL read --line --j8
details
16pass echo builtin should disallow typed args - literal
17pass echo builtin should disallow typed args - variable
18FAIL read --all-lines
details
19FAIL read --all-lines --with-eol
details
20pass Can simulate read --all-lines with a proc and value.Place
21pass read --all
22pass read --line from directory is an error (EISDIR)
23pass read --all from directory is an error (EISDIR)
24pass read -0 is like read -r -d ''
25pass simple_test_builtin
26pass long flags to test
27pass push-registers
28pass push-registers usage
29pass fopen
30pass type(x)
28 passed, 0 OK, 0 not implemented, 0 BUG, 3 failed, 0 timeouts, 0 cases skipped
3 failed under osh

Details on runs that didn't PASS

osh15 read --line --j8

[osh stdout] Expected 'foo\n', got "u'foo'\n"

stdout:
u'foo'
stderr:
osh18 read --all-lines

[osh stdout] Expected '1 2 3\n', got '@nums\n'

stdout:
@nums
stderr:
  seq 3 | read --all-lines :nums
               ^~~~~~~~~~~
[ stdin ]:1: 'read' got invalid flag '--all-lines'
osh19 read --all-lines --with-eol

[osh stdout] Expected '1\n2\n3\n', got '@nums\n'

stdout:
@nums
stderr:
  seq 3 | read --all-lines --with-eol :nums
               ^~~~~~~~~~~
[ stdin ]:1: 'read' got invalid flag '--all-lines'