Results for func.test.sh

casedashbashmkshoshosh_ALTosh-byterundescription
0pass pass pass pass pass FAIL Locals don't leak
details
1pass pass pass pass pass FAIL Globals leak
details
2pass pass pass pass pass FAIL Return statement
details
3pass pass pass pass pass FAIL Dynamic Scope
details
4pass pass pass pass pass FAIL Dynamic Scope Mutation (wow this is bad)
details
5pass pass pass pass pass FAIL Assign local separately
details
6pass pass pass pass pass FAIL Assign a local and global on same line
details

35 passed, 0 ok, 0 known unimplemented, 0 known bugs, 0 failed, 0 skipped

Details on runs that didn't PASS

osh-byterun0 Locals don't leak

[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
osh-byterun1 Globals leak

[osh-byterun stdout] Expected 'f_var\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-byterun2 Return statement

[osh-byterun stdout] Expected 'one\n', got ''
[osh-byterun status] Expected 42, 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-byterun3 Dynamic Scope

[osh-byterun stdout] Expected 'g_var\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-byterun4 Dynamic Scope Mutation (wow this is bad)

[osh-byterun stdout] Expected 'g: f_mutation\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 Assign local separately

[osh-byterun stdout] Expected '[new-value]\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 Assign a local and global on same line

[osh-byterun stdout] Expected u'[L G]\n[ G]\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