Debugger/DebugServer.py

changeset 984
f4bddd7cf51e
parent 945
8cd4d08fa9f6
child 1112
8a7d1b9d18db
--- a/Debugger/DebugServer.py	Fri Apr 15 18:23:15 2011 +0200
+++ b/Debugger/DebugServer.py	Fri Apr 15 18:53:04 2011 +0200
@@ -116,8 +116,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)
     
@@ -1228,7 +1228,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)
         
@@ -1237,7 +1237,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