Updates:
Status: Started
Owner: janne.t.harkonen
Comment #14 on issue 881 by janne.t.harkonen: Executing run multiple times
on RobotRunner fails
http://code.google.com/p/robotframework/issues/detail?id=881
It seems that the root cause for this is (accidental) use of shared mutable
state between instances of RobotSettings and RebotSettings.
Creating these objects in sequence RobotSettings(); RebotSettings();
RobotSettings() causes the latter RobotSettings to be corrupted with Rebot
options, which causes the reported error at later stage.
Luckily this is very easy to fix: dict.copy() is our friend here.