Results for brace-expansion.test.sh

casebashmkshzshoshosh_ALTosh-byterundescription
0pass pass pass pass pass FAIL no expansion
details
1pass pass pass ok ok FAIL incomplete trailing expansion
detailsdetailsdetails
2pass pass pass ok ok FAIL partial leading expansion
detailsdetailsdetails
3pass pass pass ok ok FAIL partial leading expansion 2
detailsdetailsdetails
4pass pass ok ok ok FAIL } in expansion
detailsdetailsdetailsdetails
5pass pass pass pass pass FAIL single expansion
details
6pass pass pass pass pass FAIL double expansion
details
7pass pass pass pass pass FAIL triple expansion
details
8pass pass pass pass pass FAIL double expansion with single and double quotes
details
9pass pass pass pass pass FAIL expansion with mixed quotes
details
10pass pass pass pass pass FAIL expansion with simple var
details
11BUG pass pass pass pass FAIL double expansion with simple var -- bash bug
detailsdetails
12pass pass pass pass pass FAIL double expansion with braced variable
details
13BUG pass pass pass pass FAIL double expansion with literal and simple var
detailsdetails
14pass pass pass pass pass FAIL expansion with command sub
details
15pass pass pass pass pass FAIL expansion with arith sub
details
16pass pass pass pass pass FAIL double expansion with escaped literals
details
17BUG pass BUG pass pass FAIL { in expansion
detailsdetailsdetails
18pass pass pass pass pass FAIL quoted { in expansion
details
19pass pass pass pass pass FAIL Empty expansion
details
20pass ok ok pass pass FAIL Empty alternative
detailsdetailsdetails
21pass pass pass pass pass FAIL Empty alternative with empty string suffix
details
22pass pass pass pass pass FAIL nested brace expansion
details
23pass pass pass pass pass FAIL triple nested brace expansion
details
24pass pass pass pass pass FAIL nested and double brace expansion
details
25pass BUG pass pass pass FAIL expansion on RHS of assignment
detailsdetails
26pass pass ok pass pass FAIL no expansion with RHS assignment
detailsdetails
27pass pass pass pass pass FAIL Tilde expansion
details
28pass ok pass FAIL FAIL FAIL Tilde expansion with brace expansion
detailsdetailsdetailsdetails
29pass ok pass FAIL FAIL FAIL Two kinds of tilde expansion
detailsdetailsdetailsdetails
30pass pass pass pass pass FAIL Tilde expansion come before var expansion
details
31pass N-I pass FAIL FAIL FAIL Number range expansion
detailsdetailsdetailsdetails
32pass N-I ok FAIL FAIL FAIL Ascending number range expansion with negative step
detailsdetailsdetailsdetailsdetails
33pass N-I pass FAIL FAIL FAIL Descending number range expansion
detailsdetailsdetailsdetails
34pass N-I ok FAIL FAIL FAIL Descending number range expansion with negative step
detailsdetailsdetailsdetailsdetails
35pass N-I pass FAIL FAIL FAIL Char range expansion
detailsdetailsdetailsdetails
36pass N-I N-I FAIL FAIL FAIL Char range expansion with step
detailsdetailsdetailsdetailsdetails
37pass N-I N-I FAIL FAIL FAIL Descending char range expansion
detailsdetailsdetailsdetailsdetails
38pass N-I pass FAIL FAIL FAIL Fixed width number range expansion
detailsdetailsdetailsdetails
39pass N-I ok FAIL FAIL FAIL Inconsistent fixed width number range expansion
detailsdetailsdetailsdetailsdetails
40pass N-I pass FAIL FAIL FAIL Inconsistent fixed width number range expansion
detailsdetailsdetailsdetails
41pass ok ok pass pass FAIL Side effect in expansion
detailsdetailsdetails

150 passed, 19 ok, 12 known unimplemented, 5 known bugs, 12 failed, 0 skipped

Details on runs that didn't PASS

osh-byterun0 no expansion

[osh-byterun stdout] Expected '{foo}\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh1 incomplete trailing expansion

stdout:
{a,b}_{
stderr:
osh_ALT1 incomplete trailing expansion

stdout:
{a,b}_{
stderr:
osh-byterun1 incomplete trailing expansion

[osh-byterun stdout] Expected '{a,b}_{\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh2 partial leading expansion

stdout:
}_{a,b}
stderr:
osh_ALT2 partial leading expansion

stdout:
}_{a,b}
stderr:
osh-byterun2 partial leading expansion

[osh-byterun stdout] Expected '}_{a,b}\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh3 partial leading expansion 2

stdout:
{x}_{a,b}
stderr:
osh_ALT3 partial leading expansion 2

stdout:
{x}_{a,b}
stderr:
osh-byterun3 partial leading expansion 2

[osh-byterun stdout] Expected '{x}_{a,b}\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
zsh4 } in expansion

stdout:
stderr: 
zsh: parse error near `}'
osh4 } in expansion

stdout:
{a,b}}
stderr:
osh_ALT4 } in expansion

stdout:
{a,b}}
stderr:
osh-byterun4 } in expansion

[osh-byterun stdout] Expected '{a,b}}\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun5 single expansion

[osh-byterun stdout] Expected 'foo bar\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun6 double expansion

[osh-byterun stdout] Expected 'a_c a_d b_c b_d\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun7 triple expansion

[osh-byterun stdout] Expected '000 001 010 011 100 101 110 111\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun8 double expansion with single and double quotes

[osh-byterun stdout] Expected 'a_c a_d b_c b_d\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun9 expansion with mixed quotes

[osh-byterun stdout] Expected '-Xb- -cd-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun10 expansion with simple var

[osh-byterun stdout] Expected '-A- -b-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
bash11 double expansion with simple var -- bash bug

stdout:
b_c b_d
stderr:
osh-byterun11 double expansion with simple var -- bash bug

[osh-byterun stdout] Expected 'A_c A_d b_c b_d\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun12 double expansion with braced variable

[osh-byterun stdout] Expected 'A_c A_d b_c b_d\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
bash13 double expansion with literal and simple var

stdout:
_ _ b_c b_d
stderr:
osh-byterun13 double expansion with literal and simple var

[osh-byterun stdout] Expected '_A_c _A_d b_c b_d\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun14 expansion with command sub

[osh-byterun stdout] Expected '-a- -b-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun15 expansion with arith sub

[osh-byterun stdout] Expected '-3- -b-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun16 double expansion with escaped literals

[osh-byterun stdout] Expected '-$- -[- -]-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
bash17 { in expansion

stdout:
{a {b
stderr:
zsh17 { in expansion

stdout:
{a {b
stderr:
osh-byterun17 { in expansion

[osh-byterun stdout] Expected '{{a,b}\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun18 quoted { in expansion

[osh-byterun stdout] Expected '{a {b\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun19 Empty expansion

[osh-byterun stdout] Expected 'aXb ab aYb\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh20 Empty alternative

stdout:
['X', '', 'Y', '']
stderr:
zsh20 Empty alternative

stdout:
['X', '', 'Y', '']
stderr:
osh-byterun20 Empty alternative

[osh-byterun stdout] Expected "['X', 'Y']\n", got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun21 Empty alternative with empty string suffix

[osh-byterun stdout] Expected "['X', '', 'Y', '']\n", got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun22 nested brace expansion

[osh-byterun stdout] Expected '-A- -=a=- -=b=- -B-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun23 triple nested brace expansion

[osh-byterun stdout] Expected '-A- -=a=- -=.x.=- -=.y.=- -=b=- -B-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun24 nested and double brace expansion

[osh-byterun stdout] Expected '-A- -=ac=- -=ad=- -=bc=- -=bd=- -B-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh25 expansion on RHS of assignment

stdout:
X Y
stderr:
osh-byterun25 expansion on RHS of assignment

[osh-byterun stdout] Expected '{X,Y}\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
zsh26 no expansion with RHS assignment

stdout:
stderr: 
zsh: parse error near `\n'
osh-byterun26 no expansion with RHS assignment

[osh-byterun status] Expected 127, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun27 Tilde expansion

[osh-byterun stdout] Expected '/home/foo\n/home/bar\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh28 Tilde expansion with brace expansion

stdout:
foo~/bar ~/bar
stderr:
osh28 Tilde expansion with brace expansion

[osh stdout] Expected 'foo~/bar /home/bob/bar\n', got 'foo~/bar ~/bar\n'

stdout:
foo~/bar ~/bar
stderr:
osh_ALT28 Tilde expansion with brace expansion

[osh_ALT stdout] Expected 'foo~/bar /home/bob/bar\n', got 'foo~/bar ~/bar\n'

stdout:
foo~/bar ~/bar
stderr:
osh-byterun28 Tilde expansion with brace expansion

[osh-byterun stdout] Expected 'foo~/bar /home/bob/bar\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh29 Two kinds of tilde expansion

stdout:
~/src ~root
stderr:
osh29 Two kinds of tilde expansion

[osh stdout] Expected '/home/bob/src /root\n', got '~/src ~root\n'

stdout:
~/src ~root
stderr:
osh_ALT29 Two kinds of tilde expansion

[osh_ALT stdout] Expected '/home/bob/src /root\n', got '~/src ~root\n'

stdout:
~/src ~root
stderr:
osh-byterun29 Two kinds of tilde expansion

[osh-byterun stdout] Expected '/home/bob/src /root\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
osh-byterun30 Tilde expansion come before var expansion

[osh-byterun stdout] Expected '/home/bob\n~\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh31 Number range expansion

stdout:
-{1..8..3}-
stderr:
osh31 Number range expansion

[osh stdout] Expected '-1- -4- -7-\n', got '-{1..8..3}-\n'

stdout:
-{1..8..3}-
stderr:
osh_ALT31 Number range expansion

[osh_ALT stdout] Expected '-1- -4- -7-\n', got '-{1..8..3}-\n'

stdout:
-{1..8..3}-
stderr:
osh-byterun31 Number range expansion

[osh-byterun stdout] Expected '-1- -4- -7-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh32 Ascending number range expansion with negative step

stdout:
-{1..8..-3}-
stderr:
zsh32 Ascending number range expansion with negative step

stdout:
-7- -4- -1-
stderr:
osh32 Ascending number range expansion with negative step

[osh stdout] Expected '-1- -4- -7-\n', got '-{1..8..-3}-\n'

stdout:
-{1..8..-3}-
stderr:
osh_ALT32 Ascending number range expansion with negative step

[osh_ALT stdout] Expected '-1- -4- -7-\n', got '-{1..8..-3}-\n'

stdout:
-{1..8..-3}-
stderr:
osh-byterun32 Ascending number range expansion with negative step

[osh-byterun stdout] Expected '-1- -4- -7-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh33 Descending number range expansion

stdout:
-{8..1..3}-
stderr:
osh33 Descending number range expansion

[osh stdout] Expected '-8- -5- -2-\n', got '-{8..1..3}-\n'

stdout:
-{8..1..3}-
stderr:
osh_ALT33 Descending number range expansion

[osh_ALT stdout] Expected '-8- -5- -2-\n', got '-{8..1..3}-\n'

stdout:
-{8..1..3}-
stderr:
osh-byterun33 Descending number range expansion

[osh-byterun stdout] Expected '-8- -5- -2-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh34 Descending number range expansion with negative step

stdout:
-{8..1..-3}-
stderr:
zsh34 Descending number range expansion with negative step

stdout:
-2- -5- -8-
stderr:
osh34 Descending number range expansion with negative step

[osh stdout] Expected '-8- -5- -2-\n', got '-{8..1..-3}-\n'

stdout:
-{8..1..-3}-
stderr:
osh_ALT34 Descending number range expansion with negative step

[osh_ALT stdout] Expected '-8- -5- -2-\n', got '-{8..1..-3}-\n'

stdout:
-{8..1..-3}-
stderr:
osh-byterun34 Descending number range expansion with negative step

[osh-byterun stdout] Expected '-8- -5- -2-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh35 Char range expansion

stdout:
-{a..e}-
stderr:
osh35 Char range expansion

[osh stdout] Expected '-a- -b- -c- -d- -e-\n', got '-{a..e}-\n'

stdout:
-{a..e}-
stderr:
osh_ALT35 Char range expansion

[osh_ALT stdout] Expected '-a- -b- -c- -d- -e-\n', got '-{a..e}-\n'

stdout:
-{a..e}-
stderr:
osh-byterun35 Char range expansion

[osh-byterun stdout] Expected '-a- -b- -c- -d- -e-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh36 Char range expansion with step

stdout:
-{a..e..2}- -{a..e..-2}-
stderr:
zsh36 Char range expansion with step

stdout:
-{a..e..2}- -{a..e..-2}-
stderr:
osh36 Char range expansion with step

[osh stdout] Expected '-a- -c- -e- -a- -c- -e-\n', got '-{a..e..2}- -{a..e..-2}-\n'

stdout:
-{a..e..2}- -{a..e..-2}-
stderr:
osh_ALT36 Char range expansion with step

[osh_ALT stdout] Expected '-a- -c- -e- -a- -c- -e-\n', got '-{a..e..2}- -{a..e..-2}-\n'

stdout:
-{a..e..2}- -{a..e..-2}-
stderr:
osh-byterun36 Char range expansion with step

[osh-byterun stdout] Expected '-a- -c- -e- -a- -c- -e-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh37 Descending char range expansion

stdout:
-{e..a..2}- -{e..a..-2}-
stderr:
zsh37 Descending char range expansion

stdout:
-{e..a..2}- -{e..a..-2}-
stderr:
osh37 Descending char range expansion

[osh stdout] Expected '-e- -c- -a- -e- -c- -a-\n', got '-{e..a..2}- -{e..a..-2}-\n'

stdout:
-{e..a..2}- -{e..a..-2}-
stderr:
osh_ALT37 Descending char range expansion

[osh_ALT stdout] Expected '-e- -c- -a- -e- -c- -a-\n', got '-{e..a..2}- -{e..a..-2}-\n'

stdout:
-{e..a..2}- -{e..a..-2}-
stderr:
osh-byterun37 Descending char range expansion

[osh-byterun stdout] Expected '-e- -c- -a- -e- -c- -a-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh38 Fixed width number range expansion

stdout:
-{01..03}-
stderr:
osh38 Fixed width number range expansion

[osh stdout] Expected '-01- -02- -03-\n', got '-{01..03}-\n'

stdout:
-{01..03}-
stderr:
osh_ALT38 Fixed width number range expansion

[osh_ALT stdout] Expected '-01- -02- -03-\n', got '-{01..03}-\n'

stdout:
-{01..03}-
stderr:
osh-byterun38 Fixed width number range expansion

[osh-byterun stdout] Expected '-01- -02- -03-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh39 Inconsistent fixed width number range expansion

stdout:
-{01..003}-
stderr:
zsh39 Inconsistent fixed width number range expansion

stdout:
-01- -02- -03-
stderr:
osh39 Inconsistent fixed width number range expansion

[osh stdout] Expected '-001- -002- -003-\n', got '-{01..003}-\n'

stdout:
-{01..003}-
stderr:
osh_ALT39 Inconsistent fixed width number range expansion

[osh_ALT stdout] Expected '-001- -002- -003-\n', got '-{01..003}-\n'

stdout:
-{01..003}-
stderr:
osh-byterun39 Inconsistent fixed width number range expansion

[osh-byterun stdout] Expected '-001- -002- -003-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh40 Inconsistent fixed width number range expansion

stdout:
-{01..3}-
stderr:
osh40 Inconsistent fixed width number range expansion

[osh stdout] Expected '-01- -02- -03-\n', got '-{01..3}-\n'

stdout:
-{01..3}-
stderr:
osh_ALT40 Inconsistent fixed width number range expansion

[osh_ALT stdout] Expected '-01- -02- -03-\n', got '-{01..3}-\n'

stdout:
-{01..3}-
stderr:
osh-byterun40 Inconsistent fixed width number range expansion

[osh-byterun stdout] Expected '-01- -02- -03-\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend
mksh41 Side effect in expansion

stdout:
a-0 b-0 c-0
stderr:
zsh41 Side effect in expansion

stdout:
a-0 b-0 c-0
stderr:
osh-byterun41 Side effect in expansion

[osh-byterun stdout] Expected 'a-0 b-1 c-2\n', got ''
[osh-byterun status] Expected 0, got 1

stdout:
stderr: 
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/opy_.py", line 10, in <module>
    from frontend import args
ImportError: No module named frontend