437 @param fn the filename to run (string) |
437 @param fn the filename to run (string) |
438 @param argv the commandline arguments to pass to the program (string) |
438 @param argv the commandline arguments to pass to the program (string) |
439 @param wd the working directory for the program (string) |
439 @param wd the working directory for the program (string) |
440 @keyparam erase flag indicating that coverage info should be |
440 @keyparam erase flag indicating that coverage info should be |
441 cleared first (boolean) |
441 cleared first (boolean) |
|
442 @exception NotImplementedError raised to indicate that this interface |
|
443 is not supported |
442 """ |
444 """ |
443 raise NotImplementedError("Interface not available.") |
445 raise NotImplementedError("Interface not available.") |
444 |
446 |
445 def remoteProfile(self, fn, argv, wd, erase=False): |
447 def remoteProfile(self, fn, argv, wd, erase=False): |
446 """ |
448 """ |
448 |
450 |
449 @param fn the filename to run (string) |
451 @param fn the filename to run (string) |
450 @param argv the commandline arguments to pass to the program (string) |
452 @param argv the commandline arguments to pass to the program (string) |
451 @param wd the working directory for the program (string) |
453 @param wd the working directory for the program (string) |
452 @keyparam erase flag indicating that timing info should be cleared first (boolean) |
454 @keyparam erase flag indicating that timing info should be cleared first (boolean) |
|
455 @exception NotImplementedError raised to indicate that this interface |
|
456 is not supported |
453 """ |
457 """ |
454 raise NotImplementedError("Interface not available.") |
458 raise NotImplementedError("Interface not available.") |
455 |
459 |
456 def remoteStatement(self, stmt): |
460 def remoteStatement(self, stmt): |
457 """ |
461 """ |
678 (list of strings) |
682 (list of strings) |
679 @param cov flag indicating collection of coverage data is requested (boolean) |
683 @param cov flag indicating collection of coverage data is requested (boolean) |
680 @param covname filename to be used to assemble the coverage caches |
684 @param covname filename to be used to assemble the coverage caches |
681 filename (string) |
685 filename (string) |
682 @param coverase flag indicating erasure of coverage data is requested (boolean) |
686 @param coverase flag indicating erasure of coverage data is requested (boolean) |
|
687 @exception NotImplementedError raised to indicate that this interface |
|
688 is not supported |
683 """ |
689 """ |
684 raise NotImplementedError("Interface not available.") |
690 raise NotImplementedError("Interface not available.") |
685 |
691 |
686 def remoteUTRun(self): |
692 def remoteUTRun(self): |
687 """ |
693 """ |
688 Public method to start a unittest run. |
694 Public method to start a unittest run. |
|
695 |
|
696 @exception NotImplementedError raised to indicate that this interface |
|
697 is not supported |
689 """ |
698 """ |
690 raise NotImplementedError("Interface not available.") |
699 raise NotImplementedError("Interface not available.") |
691 |
700 |
692 def remoteUTStop(self): |
701 def remoteUTStop(self): |
693 """ |
702 """ |
694 public method to stop a unittest run. |
703 Public method to stop a unittest run. |
|
704 |
|
705 @exception NotImplementedError raised to indicate that this interface |
|
706 is not supported |
695 """ |
707 """ |
696 raise NotImplementedError("Interface not available.") |
708 raise NotImplementedError("Interface not available.") |
697 |
709 |
698 def __parseClientLine(self): |
710 def __parseClientLine(self): |
699 """ |
711 """ |