Results for var-ref.test.sh

statusoshosh_.pyosh_.cc
pass 876
ok 111
N-I 111
FAIL 345
total131313
caseoshosh_.pyosh_.ccdescription
0pass pass pass var ref ${!a}
1pass pass FAIL ref to $@ with @
details
2pass pass pass ref to $1 and $2 with 1 and 2
3FAIL FAIL FAIL var ref with 1 and @ and *
detailsdetailsdetails
4pass pass pass var ref to special var BASH_SOURCE
5N-I N-I N-I var ref to $? with '?' (not in Oil)
detailsdetailsdetails
6FAIL FAIL FAIL indirection, *then* fancy expansion features
detailsdetailsdetails
7FAIL FAIL FAIL indirection *to* an array reference
detailsdetailsdetails
8pass FAIL FAIL indirection to nasty complex array references
detailsdetails
9pass pass pass indirection *to* fancy expansion features bash disallows
10ok ok ok Bad var ref with ${!a}
detailsdetailsdetails
11pass pass pass ${!OPTIND} (used by bash completion
12pass pass pass ${!ref-default}
21 passed, 3 OK, 3 not implemented, 0 BUG, 12 failed, 0 timeouts, 0 cases skipped
3 failed under osh

Details on runs that didn't PASS

osh_.cc1 ref to $@ with @

[osh_.cc stdout] Expected 'ref=one two\n', got ''
[osh_.cc status] Expected 0, got 1

stdout:
stderr: 
  echo ref=${!ref}
  ^~~~
[ stdin ]:3: fatal: Bad indirect expansion: '@'
osh3 var ref with 1 and @ and *

[osh stdout] Expected '|x|\n|x|y|\n|x y|\n', got '|x|\n|x|y|\n|x|y|\n'

stdout:
|x|
|x|y|
|x|y|
stderr:
osh_.py3 var ref with 1 and @ and *

[osh_.py stdout] Expected '|x|\n|x|y|\n|x y|\n', got '|x|\n|x|y|\n|x|y|\n'

stdout:
|x|
|x|y|
|x|y|
stderr:
osh_.cc3 var ref with 1 and @ and *

[osh_.cc stdout] Expected '|x|\n|x|y|\n|x y|\n', got '|x|\n'
[osh_.cc status] Expected 0, got 1

stdout:
|x|
stderr:
  ref=@; printf "|%s" "${!ref}" $'\n'
         ^~~~~~
TODO:3: fatal: Bad indirect expansion: '@'
osh5 var ref to $? with '?' (not in Oil)

stdout:
myfunc
stderr:
    echo ${!ref}
            ^~~
[ stdin ]:3: fatal: Bad indirect expansion: '?'
osh_.py5 var ref to $? with '?' (not in Oil)

stdout:
myfunc
stderr:
    echo ${!ref}
            ^~~
[ stdin ]:3: fatal: Bad indirect expansion: '?'
osh_.cc5 var ref to $? with '?' (not in Oil)

stdout:
myfunc
stderr:
    echo ${!ref}
    ^~~~
[ stdin ]:3: fatal: Bad indirect expansion: '?'
osh6 indirection, *then* fancy expansion features

[osh stdout] Expected 'ok\n', got "${!b[1]} -> expected asdf, got asdf x\n$zz -> expected foo, got \nbar vs foo\n$zz -> expected foo, got \nbad err msg: ${!w:?oops} -> ${!w:?oops}\n ^\n[ eval at line 10 of (source.Stdin comment:'') ]:10: fatal: unset variable 'oops'\n${!x^a} -> expected Aaabcc, got \nok\n"

stdout:
${!b[1]} -> expected asdf, got asdf x
$zz -> expected foo, got 
bar vs foo
$zz -> expected foo, got 
bad err msg: ${!w:?oops} ->   ${!w:?oops}
     ^
[ eval at line 10 of (source.Stdin comment:'') ]:10: fatal: unset variable 'oops'
${!x^a} -> expected Aaabcc, got 
ok
stderr:
  echo "${!x^a}"
  ^~~~
[ eval at line 5 of (source.Stdin comment:'') ]:5: fatal: Id.VOp1_Caret can't have an argument
osh_.py6 indirection, *then* fancy expansion features

[osh_.py stdout] Expected 'ok\n', got 'bad success: ${!!xd}\nbad success: ${!!x*}\nbad success: ${!!a[*]}\nbad success: ${!#x}\nbad success: ${!#a[@]}\n${!a[1]} -> expected xx, got \n${!b[1]} -> expected asdf, got \n${!y:-foo} -> expected foo, got \n${!x:-foo} -> expected aaabcc, got \n$zz -> expected foo, got \nbar vs foo\n$zz -> expected foo, got \nbad success: ${!w:?oops}\nbad err msg: ${!w:?oops} -> \n${!x:?oops} -> expected aaabcc, got \n${!x:+foo} -> expected foo, got \n${!x:2} -> expected abcc, got \n${!x:2:2} -> expected ab, got \n${!x#*a} -> expected aabcc, got \n${!x%%c*} -> expected aaab, got \n${!x/a*b/d} -> expected dcc, got \n${!x^a} -> expected Aaabcc, got \n${!p@P} -> expected $ , got \nok\n'

stdout:
bad success: ${!!xd}
bad success: ${!!x*}
bad success: ${!!a[*]}
bad success: ${!#x}
bad success: ${!#a[@]}
${!a[1]} -> expected xx, got 
${!b[1]} -> expected asdf, got 
${!y:-foo} -> expected foo, got 
${!x:-foo} -> expected aaabcc, got 
$zz -> expected foo, got 
bar vs foo
$zz -> expected foo, got 
bad success: ${!w:?oops}
bad err msg: ${!w:?oops} -> 
${!x:?oops} -> expected aaabcc, got 
${!x:+foo} -> expected foo, got 
${!x:2} -> expected abcc, got 
${!x:2:2} -> expected ab, got 
${!x#*a} -> expected aabcc, got 
${!x%%c*} -> expected aaab, got 
${!x/a*b/d} -> expected dcc, got 
${!x^a} -> expected Aaabcc, got 
${!p@P} -> expected $ , got 
ok
stderr:
osh_.cc6 indirection, *then* fancy expansion features

[osh_.cc stdout] Expected 'ok\n', got 'bad success: ${!!xd}\nbad success: ${!!x*}\nbad success: ${!!a[*]}\nbad success: ${!#x}\nbad success: ${!#a[@]}\n${!a[1]} -> expected xx, got \n${!b[1]} -> expected asdf, got \n${!y:-foo} -> expected foo, got \n${!x:-foo} -> expected aaabcc, got \n$zz -> expected foo, got \nbar vs foo\n$zz -> expected foo, got \nbad success: ${!w:?oops}\nbad err msg: ${!w:?oops} -> \n${!x:?oops} -> expected aaabcc, got \n${!x:+foo} -> expected foo, got \n${!x:2} -> expected abcc, got \n${!x:2:2} -> expected ab, got \n${!x#*a} -> expected aabcc, got \n${!x%%c*} -> expected aaab, got \n${!x/a*b/d} -> expected dcc, got \n${!x^a} -> expected Aaabcc, got \n${!p@P} -> expected $ , got \nok\n'

stdout:
bad success: ${!!xd}
bad success: ${!!x*}
bad success: ${!!a[*]}
bad success: ${!#x}
bad success: ${!#a[@]}
${!a[1]} -> expected xx, got 
${!b[1]} -> expected asdf, got 
${!y:-foo} -> expected foo, got 
${!x:-foo} -> expected aaabcc, got 
$zz -> expected foo, got 
bar vs foo
$zz -> expected foo, got 
bad success: ${!w:?oops}
bad err msg: ${!w:?oops} -> 
${!x:?oops} -> expected aaabcc, got 
${!x:+foo} -> expected foo, got 
${!x:2} -> expected abcc, got 
${!x:2:2} -> expected ab, got 
${!x#*a} -> expected aabcc, got 
${!x%%c*} -> expected aaab, got 
${!x/a*b/d} -> expected dcc, got 
${!x^a} -> expected Aaabcc, got 
${!p@P} -> expected $ , got 
ok
stderr:
osh7 indirection *to* an array reference

[osh stdout] Expected '.\n.x\n.x.y\n.x y\n', got '.\n.x\n.x.y\n.x.y\n'

stdout:
.
.x
.x.y
.x.y
stderr:
osh_.py7 indirection *to* an array reference

[osh_.py stdout] Expected '.\n.x\n.x.y\n.x y\n', got '.\n.x\n.x.y\n.x.y\n'

stdout:
.
.x
.x.y
.x.y
stderr:
osh_.cc7 indirection *to* an array reference

[osh_.cc stdout] Expected '.\n.x\n.x.y\n.x y\n', got '.\n.x\n'
[osh_.cc status] Expected 0, got 1

stdout:
.
.x
stderr:
    printf ".%s" "${!1}"
    ^~~~~~
[ stdin ]:2: fatal: Bad indirect expansion: 'b[@]'
osh_.py8 indirection to nasty complex array references

[osh_.py stdout] Expected '1 end\n', got 'end\n'

stdout:
end
stderr:
osh_.cc8 indirection to nasty complex array references

[osh_.cc stdout] Expected '1 end\n', got 'end\n'

stdout:
end
stderr:
osh10 Bad var ref with ${!a}

stdout:
stderr: 
  echo ref ${!a}
              ^
[ stdin ]:2: fatal: Bad indirect expansion: 'bad var name'
osh_.py10 Bad var ref with ${!a}

stdout:
stderr: 
  echo ref ${!a}
              ^
[ stdin ]:2: fatal: Bad indirect expansion: 'bad var name'
osh_.cc10 Bad var ref with ${!a}

stdout:
stderr: 
  echo ref ${!a}
  ^~~~
[ stdin ]:2: fatal: Bad indirect expansion: 'bad var name'