--- a/DebugClients/Python/DCTestResult.py Tue Mar 26 19:39:42 2019 +0100 +++ b/DebugClients/Python/DCTestResult.py Wed Mar 27 20:09:37 2019 +0100 @@ -17,15 +17,18 @@ For more details see unittest.py of the standard python distribution. """ - def __init__(self, dbgClient): + def __init__(self, dbgClient, failfast): """ Constructor @param dbgClient reference to the debug client @type DebugClientBase + @param failfast flag indicating to stop at the first error + @type bool """ TestResult.__init__(self) self.__dbgClient = dbgClient + self.failfast = failfast def addFailure(self, test, err): """