Changeset 84197 in vbox
- Timestamp:
- May 8, 2020 6:58:38 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137805
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r84179 r84197 2255 2255 else: 2256 2256 if abBuf: 2257 reporter.log2('Process (PID %d) got %d bytes of %s data' % (iPid, len(abBuf), sFdNm,)); 2258 for sLine in abBuf.splitlines(): 2257 reporter.log2('Process (PID %d) got %d bytes of %s data (type: %s)' 2258 % (iPid, len(abBuf), sFdNm, type(abBuf))); 2259 for sLine in abBuf.decode("utf-8").splitlines(): 2259 2260 reporter.log('%s: %s' % (sFdNm, sLine)); 2260 2261 acbFdOut[iFd] += len(abBuf);
Note:
See TracChangeset
for help on using the changeset viewer.