Results for oil-proc.test.sh

statusoshosh_ALT
pass 99
FAIL 44
total1313
caseoshosh_ALTdescription
0pass pass Open proc (any number of args)
1FAIL FAIL Closed proc with no args, passed too many
detailsdetails
2pass pass Open proc has "$@"
3pass pass Closed proc doesn't have "$@"
4pass pass Proc with default args
5pass pass Proc with explicit args
6pass pass Proc with varargs
7pass pass varargs 2
8pass pass Proc name-with-hyphen
9pass pass Proc with block arg
10FAIL FAIL proc returning wrong type
detailsdetails
11FAIL FAIL proc returning invalid string
detailsdetails
12FAIL FAIL Out param / setref
detailsdetails
18 passed, 0 OK, 0 not implemented, 0 BUG, 4 failed, 0 timeouts, 0 cases skipped
4 failed under osh

Details on runs that didn't PASS

osh1 Closed proc with no args, passed too many

[osh stderr] Found 'Traceback (most recent'

stdout:
status=42
stderr:
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 380, in <module>
    sys.exit(main(sys.argv))
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 324, in main
    return AppBundleMain(argv)
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 283, in AppBundleMain
    loader, line_input)
  File "/home/andy/git/oilshell/oil/core/shell.py", line 640, in Main
    cmd_flags=cmd_eval.IsMainProgram)
  File "/home/andy/git/oilshell/oil/core/main_loop.py", line 168, in Batch
    is_return, is_fatal = cmd_ev.ExecuteAndCatch(node, cmd_flags=cmd_flags)
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1440, in ExecuteAndCatch
    status = self._Execute(node)
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1320, in _Execute
    status, check_errexit = self._Dispatch(node)
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 570, in _Dispatch
    status = self._RunSimpleCommand(cmd_val, node.do_fork)
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 481, in _RunSimpleCommand
    return self.shell_ex.RunSimpleCommand(cmd_val, do_fork)
  File "/home/andy/git/oilshell/oil/core/executor.py", line 225, in RunSimpleCommand
    status = self.cmd_ev.RunOilProc(val.obj, argv[1:])
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1577, in RunOilProc
    (node.name.val, n_params, n_args))
TypeError: proc 'f' expected 0 arguments, but got 2
osh_ALT1 Closed proc with no args, passed too many

[osh_ALT stderr] Found 'Traceback (most recent'

stdout:
status=42
stderr:
Traceback (most recent call last):
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 355, in _cpython_main_hook
    sys.exit(main(sys.argv))
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 324, in main
    return AppBundleMain(argv)
  File "/home/andy/git/oilshell/oil/bin/oil.py", line 316, in AppBundleMain
    return readlink.main(main_argv)
  File "/home/andy/git/oilshell/oil/core/shell.py", line 640, in Main
    cmd_flags=cmd_eval.IsMainProgram)
  File "/home/andy/git/oilshell/oil/core/main_loop.py", line 174, in Batch
    return status
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1440, in ExecuteAndCatch
    status = self._Execute(node)
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1320, in _Execute
    status, check_errexit = self._Dispatch(node)
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 583, in _Dispatch
    status = self._Execute(node.child)
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 481, in _RunSimpleCommand
    return self.shell_ex.RunSimpleCommand(cmd_val, do_fork)
  File "/home/andy/git/oilshell/oil/core/executor.py", line 225, in RunSimpleCommand
    status = self.cmd_ev.RunOilProc(val.obj, argv[1:])
  File "/home/andy/git/oilshell/oil/osh/cmd_eval.py", line 1577, in RunOilProc
    (node.name.val, n_params, n_args))
TypeError: proc 'f' expected 0 arguments, but got 2
FATAL: couldn't import from app bundle '/home/andy/git/oilshell/oil/_tmp/oil-tar-test/oil-0.8.2/_bin/osh' (1)
Stripping the oil.ovm binary may cause this error.
See https://github.com/oilshell/oil/issues/47
osh10 proc returning wrong type

[osh status] Expected 0, got 1

stdout:
stderr: 
['one', 'two']
osh_ALT10 proc returning wrong type

[osh_ALT status] Expected 0, got 1

stdout:
stderr: 
['one', 'two']
osh11 proc returning invalid string

[osh status] Expected 0, got 1

stdout:
stderr: 
not an integer status
osh_ALT11 proc returning invalid string

[osh_ALT status] Expected 0, got 1

stdout:
stderr: 
not an integer status
osh12 Out param / setref

[osh status] Expected 0, got 1

stdout:
stderr: 
    setref out = "PREFIX-$in"
    ^~~~~~
[ stdin ]:2: fatal: setref isn't implemented
osh_ALT12 Out param / setref

[osh_ALT status] Expected 0, got 1

stdout:
stderr: 
    setref out = "PREFIX-$in"
    ^~~~~~
[ stdin ]:2: fatal: setref isn't implemented