Results for loop.test.sh

casedashbashmkshzshoshosh_ALTdescription
0pass pass pass pass pass pass implicit for loop
1pass pass pass pass pass pass empty for loop (has "in")
2pass ok ok BUG pass pass for loop with invalid identifier
detailsdetailsdetails
3pass pass pass pass pass pass Tilde expansion within for loop
4N-I pass pass pass pass pass Brace Expansion within Array
details
5pass pass pass pass pass pass using loop var outside loop
6pass pass pass pass pass pass continue
7pass pass pass pass pass pass break
8pass pass pass pass ok ok dynamic control flow (KNOWN INCOMPATIBILITY)
detailsdetails
9pass pass pass pass pass pass while in while condition
10pass pass pass pass pass pass while in pipe
11pass pass pass pass pass pass while in pipe with subshell
12pass pass pass pass pass pass until loop
13pass pass pass ok pass pass continue at top level
details
14ok ok BUG ok pass pass continue in subshell
detailsdetailsdetailsdetails
15BUG BUG BUG BUG pass pass continue in subshell aborts with errexit
detailsdetailsdetailsdetails
16ok ok pass pass pass pass bad arg to break
detailsdetails
17BUG ok BUG BUG pass pass too many args to continue
detailsdetailsdetailsdetails

87 passed, 11 ok, 1 known unimplemented, 9 known bugs, 0 failed, 0 skipped

Details on runs that didn't PASS

bash2 for loop with invalid identifier

stdout:
stderr: 
_tmp/spec-bin/bash: line 3: `-': not a valid identifier
mksh2 for loop with invalid identifier

stdout:
stderr: 
_tmp/spec-bin/mksh: <stdin>[1]: for: bad identifier
zsh2 for loop with invalid identifier

stdout:
hi
stderr:
zsh: parse error near `-'
zsh: parse error near `done'
dash4 Brace Expansion within Array

stdout:
-{a,b}
{c,d}-
stderr:
osh8 dynamic control flow (KNOWN INCOMPATIBILITY)

stdout:
1
2
3
stderr:
    $b
    ^~
[ stdin ]:4: Can't execute 'break': No such file or directory
    $b
    ^~
[ stdin ]:4: Can't execute 'break': No such file or directory
    $b
    ^~
[ stdin ]:4: Can't execute 'break': No such file or directory
osh_ALT8 dynamic control flow (KNOWN INCOMPATIBILITY)

stdout:
1
2
3
stderr:
    $b
    ^~
[ stdin ]:4: Can't execute 'break': No such file or directory
    $b
    ^~
[ stdin ]:4: Can't execute 'break': No such file or directory
    $b
    ^~
[ stdin ]:4: Can't execute 'break': No such file or directory
zsh13 continue at top level

stdout:
one
stderr:
continue: not in while, until, select, or repeat loop
dash14 continue in subshell

stdout:
> 1
subshell status=0
. 1
> 2
subshell status=0
. 2
stderr:
bash14 continue in subshell

stdout:
> 1
subshell status=0
. 1
> 2
subshell status=0
. 2
stderr:
mksh14 continue in subshell

stdout:
> 1
Should not print
subshell status=0
. 1
> 2
Should not print
subshell status=0
. 2
stderr:
_tmp/spec-bin/mksh: <stdin>[6]: continue: can't continue
_tmp/spec-bin/mksh: <stdin>[6]: continue: can't continue
zsh14 continue in subshell

stdout:
> 1
subshell status=0
. 1
> 2
subshell status=0
. 2
stderr:
dash15 continue in subshell aborts with errexit

stdout:
> 1
should fail after subshell
. 1
> 2
should fail after subshell
. 2
stderr:
bash15 continue in subshell aborts with errexit

stdout:
> 1
should fail after subshell
. 1
> 2
should fail after subshell
. 2
stderr:
mksh15 continue in subshell aborts with errexit

stdout:
> 1
Should not print
should fail after subshell
. 1
> 2
Should not print
should fail after subshell
. 2
stderr:
_tmp/spec-bin/mksh: <stdin>[7]: continue: can't continue
_tmp/spec-bin/mksh: <stdin>[7]: continue: can't continue
zsh15 continue in subshell aborts with errexit

stdout:
> 1
should fail after subshell
. 1
> 2
should fail after subshell
. 2
stderr:
dash16 bad arg to break

stdout:
hi
stderr:
_tmp/spec-bin/dash: 4: break: Illegal number: oops
bash16 bad arg to break

stdout:
hi
stderr:
_tmp/spec-bin/bash: line 4: break: oops: numeric argument required
dash17 too many args to continue

stdout:
a
b
c
--
stderr:
bash17 too many args to continue

stdout:
a
--
stderr:
_tmp/spec-bin/bash: line 3: continue: too many arguments
mksh17 too many args to continue

stdout:
a
b
c
--
stderr:
zsh17 too many args to continue

stdout:
a
b
c
--
stderr:
continue: too many arguments
continue: too many arguments
continue: too many arguments