Changeset 61357 in vbox
- Timestamp:
- Jun 1, 2016 7:45:54 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107653
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/reporter.py
r61323 r61357 836 836 return fRc; 837 837 838 def addLogString(self, sLog, sLogName, s AltName, sDescription, sKind, sCaller, sTsPrf):838 def addLogString(self, sLog, sLogName, sDescription, sKind, sCaller, sTsPrf): 839 839 fRc = True; 840 840 if sKind in [ 'text', 'log', ] or sKind.startswith('log/'): … … 843 843 self.xmlFlush(); 844 844 g_oLock.release(); 845 self._doUploadString(sLog, s AltName, sDescription, sKind, 'text/plain');845 self._doUploadString(sLog, sLogName, sDescription, sKind, 'text/plain'); 846 846 g_oLock.acquire(); 847 847 else: … … 1332 1332 1333 1333 g_oLock.acquire(); 1334 fRc = g_oReporter.addLogString(sLog, sLogName, None,sDescription, sKind, sCaller, sTsPrf);1334 fRc = g_oReporter.addLogString(sLog, sLogName, sDescription, sKind, sCaller, sTsPrf); 1335 1335 g_oLock.release(); 1336 1336 return fRc;
Note:
See TracChangeset
for help on using the changeset viewer.