Debugger/DebugServer.py

branch
5_1_x
changeset 986
12880ccc4d15
parent 893
5907b8d05b46
child 1110
9de6692fadbd
--- a/Debugger/DebugServer.py	Fri Apr 15 18:53:34 2011 +0200
+++ b/Debugger/DebugServer.py	Fri Apr 15 18:53:59 2011 +0200
@@ -115,8 +115,8 @@
     utPrepared = pyqtSignal(int, str, str)
     utStartTest = pyqtSignal(str, str)
     utStopTest = pyqtSignal()
-    utTestFailed = pyqtSignal(str, str)
-    utTestErrored = pyqtSignal(str, str)
+    utTestFailed = pyqtSignal(str, list)
+    utTestErrored = pyqtSignal(str, list)
     utFinished = pyqtSignal()
     passiveDebugStarted = pyqtSignal(str, bool)
     
@@ -1227,7 +1227,7 @@
         Public method to process the client test failed info.
         
         @param testname name of the test (string)
-        @param traceback lines of traceback info (string)
+        @param traceback lines of traceback info (list of strings)
         """
         self.utTestFailed.emit(testname, traceback)
         
@@ -1236,7 +1236,7 @@
         Public method to process the client test errored info.
         
         @param testname name of the test (string)
-        @param traceback lines of traceback info (string)
+        @param traceback lines of traceback info (list of strings)
         """
         self.utTestErrored.emit(testname, traceback)
         

eric ide

mercurial