Comment #10 on issue 154 by pekka.klarck: IronPython compatibility
http://code.google.com/p/robotframework/issues/detail?id=154
Thanks for investigating this Wolfram. The problem you've encountered
sounds really
strange, especially the fact that your code executes fine w/o RF but fails
when run
as a library.
The only "special" thing the framework does before running keywords is
intercepting
stdout and stderr. Perhaps that affects starting processes under IronPython
somehow?
Could you test does disabling this functionality help? You can do that by
replacing
`capture_output` and `replace_output` methods inside
robot/utils/outputcapture.py
with these implementations:
def capture_output():
pass
def release_output():
return '', ''
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--
Subscription settings:
http://groups.google.com/group/robotframework-commit/subscribe?hl=en