Changeset 61360 in vbox for trunk/src/VBox
- Timestamp:
- Jun 1, 2016 7:51:59 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107656
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/reporter.py
r61357 r61360 170 170 return True; 171 171 172 def addLogString(self, sLog, sLogName, s AltName, sDescription, sKind, sCaller, sTsPrf):172 def addLogString(self, sLog, sLogName, sDescription, sKind, sCaller, sTsPrf): 173 173 """ 174 174 Adds the file to the report. 175 175 Returns True on success, False on failure. 176 176 """ 177 _ = sLog; _ = sLogName; _ = s AltName; _ = sDescription; _ = sKind; _ = sCaller; _ = sTsPrf;177 _ = sLog; _ = sLogName; _ = sDescription; _ = sKind; _ = sCaller; _ = sTsPrf; 178 178 return True; 179 179 … … 473 473 return fRc; 474 474 475 def addLogString(self, sLog, sLogName, s AltName, sDescription, sKind, sCaller, sTsPrf):475 def addLogString(self, sLog, sLogName, sDescription, sKind, sCaller, sTsPrf): 476 476 # Figure the destination filename. 477 477 iOtherFile = self.iOtherFile; … … 500 500 % (utils.getIsoTimestamp(), self._xmlEscAttr(os.path.basename(sDstFilename)), self._xmlEscAttr(sLogName), \ 501 501 self._xmlEscAttr(sKind), fRc, self._xmlEscAttr(sDescription))] ); 502 _ = sAltName;503 502 return fRc; 504 503
Note:
See TracChangeset
for help on using the changeset viewer.