Results for ysh-object.test.sh

statusyshysh-cpp
pass 99
FAIL 22
total1111
caseyshysh-cppdescription
0pass pass Object() creates prototype chain
1pass pass prototype()
2pass pass propView()
3pass pass Mutating method lookup with ->
4pass pass Mutating method must be up the prototype chain, not on the object
5pass pass Copy to Dict with dict(), and mutate
6pass pass setvar obj.attr = and += and ...
7pass pass can't encode objects as JSON
8FAIL FAIL pretty printing of cycles
detailsdetails
9pass pass Can all builtin methods with s.upper()
10FAIL FAIL Dict.keys(d), Dict.values(d), Dict.get(d, key)
detailsdetails
18 passed, 0 OK, 0 not implemented, 0 BUG, 2 failed, 0 timeouts, 0 cases skipped
2 failed under osh

Details on runs that didn't PASS

ysh8 pretty printing of cycles

[ysh stdout] Expected '', got '(Dict) {"k":42,"cycle":{ --> 0x7fc624c540a0 }}\n(Obj) {"k":42,"cycle":{"k":42,"cycle":{ --> 0x7fc624c540a0 }}}\n(Obj) {"z":99} ==> {"k":42,"cycle":{"k":42,"cycle":{ --> 0x7fc624c540a0 }}}\n'

stdout:
(Dict)   {"k":42,"cycle":{ --> 0x7fc624c540a0 }}
(Obj)   {"k":42,"cycle":{"k":42,"cycle":{ --> 0x7fc624c540a0 }}}
(Obj)   {"z":99} ==> {"k":42,"cycle":{"k":42,"cycle":{ --> 0x7fc624c540a0 }}}
stderr:
ysh-cpp8 pretty printing of cycles

[ysh-cpp stdout] Expected '', got '(Dict) {"k":42,"cycle":{ --> 0x1849 }}\n(Obj) {"k":42,"cycle":{"k":42,"cycle":{ --> 0x1849 }}}\n(Obj) {"z":99} ==> {"k":42,"cycle":{"k":42,"cycle":{ --> 0x1849 }}}\n'

stdout:
(Dict)   {"k":42,"cycle":{ --> 0x1849 }}
(Obj)   {"k":42,"cycle":{"k":42,"cycle":{ --> 0x1849 }}}
(Obj)   {"z":99} ==> {"k":42,"cycle":{"k":42,"cycle":{ --> 0x1849 }}}
stderr:
ysh10 Dict.keys(d), Dict.values(d), Dict.get(d, key)

[ysh status] Expected 0, got 1

stdout:
stderr: 
  pp test_ (Dict.keys(d))
            ^~~~
[ stdin ]:3: fatal: Undefined variable 'Dict'
ysh-cpp10 Dict.keys(d), Dict.values(d), Dict.get(d, key)

[ysh-cpp status] Expected 0, got 1

stdout:
stderr: 
  pp test_ (Dict.keys(d))
            ^~~~
[ stdin ]:3: fatal: Undefined variable 'Dict'