Results for loop.test.sh

statusdashbashmkshzshoshosh_ALT
pass 222121202626
ok 241211
N-I 100000
BUG 225500
total272727272727
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 the word 'in' can be the loop variable
4pass pass pass pass pass pass Tilde expansion within for loop
5N-I pass pass pass pass pass Brace Expansion within Array
details
6pass pass pass pass pass pass using loop var outside loop
7pass pass pass pass pass pass continue
8pass pass pass pass pass pass break
9pass pass pass pass ok ok dynamic control flow (KNOWN INCOMPATIBILITY)
detailsdetails
10pass pass pass pass pass pass while in while condition
11pass pass pass pass pass pass while in pipe
12pass pass pass pass pass pass while in pipe with subshell
13pass pass pass pass pass pass until loop
14pass pass pass ok pass pass continue at top level
details
15ok ok BUG ok pass pass continue in subshell
detailsdetailsdetailsdetails
16BUG BUG BUG BUG pass pass continue in subshell aborts with errexit
detailsdetailsdetailsdetails
17ok ok pass pass pass pass bad arg to break
detailsdetails
18BUG ok BUG BUG pass pass too many args to continue
detailsdetailsdetailsdetails
19pass pass pass pass pass pass break in condition of loop
20pass pass pass pass pass pass break in condition of nested loop
21pass pass pass pass pass pass return within eval
22pass pass BUG pass pass pass break/continue within eval
details
23pass pass BUG BUG pass pass break/continue within source
detailsdetails
24pass BUG pass BUG pass pass top-level break/continue/return (without strict_control_flow)
detailsdetails
25pass pass pass pass pass pass multi-level break with argument
26pass pass pass pass pass pass multi-level continue
136 passed, 11 OK, 1 not implemented, 14 BUG, 0 failed, 0 timeouts, 0 cases skipped

Details on runs that didn't PASS

bash2 for loop with invalid identifier

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

stdout:
stderr: 
mksh: <stdin>[1]: for: bad identifier
zsh2 for loop with invalid identifier

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

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

stdout:
1
2
3
stderr:
    $b
    ^~
[ stdin ]:4: 'break' not found
    $b
    ^~
[ stdin ]:4: 'break' not found
    $b
    ^~
[ stdin ]:4: 'break' not found
osh_ALT9 dynamic control flow (KNOWN INCOMPATIBILITY)

stdout:
1
2
3
stderr:
    $b
    ^~
[ stdin ]:4: 'break' not found
    $b
    ^~
[ stdin ]:4: 'break' not found
    $b
    ^~
[ stdin ]:4: 'break' not found
zsh14 continue at top level

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

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

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

stdout:
> 1
Should not print
subshell status=0
. 1
> 2
Should not print
subshell status=0
. 2
stderr:
mksh: <stdin>[6]: continue: can't continue
mksh: <stdin>[6]: continue: can't continue
zsh15 continue in subshell

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

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

stdout:
> 1
should fail after subshell
. 1
> 2
should fail after subshell
. 2
stderr:
mksh16 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:
mksh: <stdin>[7]: continue: can't continue
mksh: <stdin>[7]: continue: can't continue
zsh16 continue in subshell aborts with errexit

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

stdout:
hi
stderr:
dash: 4: break: Illegal number: oops
bash17 bad arg to break

stdout:
hi
stderr:
bash: line 4: break: oops: numeric argument required
dash18 too many args to continue

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

stdout:
a
--
stderr:
bash: line 3: continue: too many arguments
mksh18 too many args to continue

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

stdout:
a
b
c
--
stderr:
continue: too many arguments
continue: too many arguments
continue: too many arguments
mksh22 break/continue within eval

stdout:
1
2
3
4
5
stderr:
mksh: continue: can't continue
mksh: break: can't break
mksh23 break/continue within source

stdout:
1
2
3
4
5
done
stderr:
mksh: spec/testdata/continue.sh[1]: continue: can't continue
mksh: spec/testdata/break.sh[1]: break: can't break
zsh23 break/continue within source

stdout:
1
2
3
4
5
done
stderr:
spec/testdata/continue.sh:continue:1: not in while, until, select, or repeat loop
spec/testdata/break.sh:break:1: not in while, until, select, or repeat loop
bash24 top-level break/continue/return (without strict_control_flow)

stdout:
break=0
continue=0
return=1
stderr:
bash: line 0: break: only meaningful in a `for', `while', or `until' loop
bash: line 0: continue: only meaningful in a `for', `while', or `until' loop
bash: line 0: return: can only `return' from a function or sourced script
zsh24 top-level break/continue/return (without strict_control_flow)

stdout:
stderr: 
zsh:break:1: not in while, until, select, or repeat loop
zsh:continue:1: not in while, until, select, or repeat loop