[svn r38574] Special case outcome.Failed - reuse that excinfo
--HG-- branch : trunk
This commit is contained in:
parent
6210030d27
commit
de078273a0
|
@ -1,7 +1,7 @@
|
||||||
""" Remote executor
|
""" Remote executor
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import py, os
|
import py, os, sys
|
||||||
|
|
||||||
from py.__.test.rsession.outcome import Outcome, ReprOutcome
|
from py.__.test.rsession.outcome import Outcome, ReprOutcome
|
||||||
from py.__.test.rsession.box import Box
|
from py.__.test.rsession.box import Box
|
||||||
|
@ -39,6 +39,10 @@ class RunExecutor(object):
|
||||||
except (SystemExit, KeyboardInterrupt):
|
except (SystemExit, KeyboardInterrupt):
|
||||||
raise
|
raise
|
||||||
except:
|
except:
|
||||||
|
e = sys.exc_info()[1]
|
||||||
|
if isinstance(e, Failed):
|
||||||
|
excinfo = e.excinfo
|
||||||
|
else:
|
||||||
excinfo = py.code.ExceptionInfo()
|
excinfo = py.code.ExceptionInfo()
|
||||||
if isinstance(self.item, py.test.Function):
|
if isinstance(self.item, py.test.Function):
|
||||||
fun = self.item.obj # hope this is stable
|
fun = self.item.obj # hope this is stable
|
||||||
|
|
Loading…
Reference in New Issue