Changeset 61531 in vbox
- Timestamp:
- Jun 7, 2016 11:45:40 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107868
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/reporter.py
r61360 r61531 816 816 def addLogFile(self, oSrcFile, sSrcFilename, sAltName, sDescription, sKind, sCaller, sTsPrf): 817 817 fRc = True; 818 if sKind in [ 'text', 'log', ] or sKind.startswith('log/') :818 if sKind in [ 'text', 'log', ] or sKind.startswith('log/') or sKind.startswith('info/'): 819 819 self.log(0, '*** Uploading "%s" - KIND: "%s" - DESC: "%s" ***' 820 820 % (sSrcFilename, sKind, sDescription), sCaller, sTsPrf); … … 837 837 def addLogString(self, sLog, sLogName, sDescription, sKind, sCaller, sTsPrf): 838 838 fRc = True; 839 if sKind in [ 'text', 'log', ] or sKind.startswith('log/') :839 if sKind in [ 'text', 'log', ] or sKind.startswith('log/') or sKind.startswith('log/'): 840 840 self.log(0, '*** Uploading "%s" - KIND: "%s" - DESC: "%s" ***' 841 841 % (sLogName, sKind, sDescription), sCaller, sTsPrf);
Note:
See TracChangeset
for help on using the changeset viewer.