Debugger/DebuggerInterfaceRuby.py

changeset 1499
b4d0457afb15
parent 1179
7661ab683f7b
child 1509
c0b5e693b0eb
--- a/Debugger/DebuggerInterfaceRuby.py	Sat Dec 17 16:03:53 2011 +0100
+++ b/Debugger/DebuggerInterfaceRuby.py	Sat Dec 17 19:13:19 2011 +0100
@@ -659,17 +659,19 @@
         """
         self.__sendCommand("{0}{1}\n".format(DebugProtocol.RequestCompletion, text))
         
-    def remoteUTPrepare(self, fn, tn, tfn, cov, covname, coverase):
+    def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase):
         """
         Public method to prepare a new unittest run.
         
         @param fn the filename to load (string)
         @param tn the testname to load (string)
         @param tfn the test function name to load tests from (string)
-        @param cov flag indicating collection of coverage data is requested
+        @param failed list of failed test, if only failed test should be run
+                (list of strings)
+        @param cov flag indicating collection of coverage data is requested (boolean)
         @param covname filename to be used to assemble the coverage caches
-                filename
-        @param coverase flag indicating erasure of coverage data is requested
+                filename (string)
+        @param coverase flag indicating erasure of coverage data is requested (boolean)
         """
         raise NotImplementedError("Interface not available.")
         

eric ide

mercurial