Changeset 84206 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- May 8, 2020 11:44:21 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137814
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r84202 r84206 2257 2257 reporter.log2('Process (PID %d) got %d bytes of %s data (type: %s)' 2258 2258 % (iPid, len(abBuf), sFdNm, type(abBuf))); 2259 if isinstance( memoryview) is abBuf: ## @todo Why is this happening?2259 if isinstance(abBuf, memoryview): ## @todo Why is this happening? 2260 2260 abBuf = abBuf.tobytes(); 2261 2261 for sLine in abBuf.decode("utf-8").splitlines():
Note:
See TracChangeset
for help on using the changeset viewer.