[svn r37462] allow the remote side to run in verbose mode
--HG-- branch : trunk
This commit is contained in:
parent
b5d79a847b
commit
de9fd5ecef
|
@ -226,6 +226,7 @@ class Config(object):
|
||||||
class override:
|
class override:
|
||||||
def __init__(self, d):
|
def __init__(self, d):
|
||||||
self.__dict__.update(d)
|
self.__dict__.update(d)
|
||||||
|
self.__file__ = "<options from remote>"
|
||||||
args, conftestdict, cmdlineopts = repr
|
args, conftestdict, cmdlineopts = repr
|
||||||
self.args = [self.topdir.join(x) for x in args]
|
self.args = [self.topdir.join(x) for x in args]
|
||||||
self.conftest.setinitial(self.args)
|
self.conftest.setinitial(self.args)
|
||||||
|
|
|
@ -130,6 +130,8 @@ def slaverun_TerminalSession(channel):
|
||||||
config.option.looponfailing = False
|
config.option.looponfailing = False
|
||||||
config.option.usepdb = False
|
config.option.usepdb = False
|
||||||
config.option.executable = None
|
config.option.executable = None
|
||||||
|
if failures:
|
||||||
|
config.option.verbose = True
|
||||||
|
|
||||||
session = config.initsession()
|
session = config.initsession()
|
||||||
session.shouldclose = channel.isclosed
|
session.shouldclose = channel.isclosed
|
||||||
|
|
Loading…
Reference in New Issue