Changeset 62310 in vbox for trunk/src/VBox/ValidationKit/testdriver
- Timestamp:
- Jul 19, 2016 10:08:40 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/reporter.py
r62110 r62310 872 872 self._fXmlFlushing = True; 873 873 874 self._writeOutput('xml-debug/%s: flushing!' % (len(self._asXml),)); # temporarily while debugging flush/poll875 874 g_oLock.release(); 876 875 (asXml, fIncErrors) = self._xmlDoFlush(asXml, fRetry = fRetry); … … 897 896 if fPolling is not True: 898 897 self._secTsXmlLast = tsNow; 899 self._writeOutput('xml-debug/%s: %s s since flush, %s s since poll %s'900 % (len(self._asXml), cSecs, cSecsLast, sDebug if sDebug is not None else '', )); # temporarily901 898 902 899 # Absolute flush thresholds. … … 915 912 def _xmlWrite(self, asText, fIndent = True): 916 913 """XML output function for the reporter.""" 917 self._writeOutput('xml-debug/%s: %s' % (len(self._asXml), asText)); # temporarily while debugging flush/poll problem.918 914 self._asXml += asText; 919 915 self._xmlFlushIfNecessary();
Note:
See TracChangeset
for help on using the changeset viewer.