Changeset 77429 in vbox for trunk/src/VBox/ValidationKit/tests/additions
- Timestamp:
- Feb 22, 2019 1:07:43 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r77413 r77429 45 45 # Standard Python imports. 46 46 from array import array 47 import binascii 47 48 import errno 48 49 import os … … 3091 3092 reporter.error('Test #%d failed: Read back buffer (%d bytes) does not match ' \ 3092 3093 'written content (%d bytes)' % (i, len(curRes.aBuf), len(aBufRead))); 3093 reporter.error('Test #%d failed: Got:\n%s' % (i, aBufRead.encode('hex')));3094 reporter.error('Test #%d failed: Expected:\n%s' % (i, curRes.aBuf.encode('hex')));3094 reporter.error('Test #%d failed: Got:\n%s' % (i, binascii.hexlify(aBufRead))); 3095 reporter.error('Test #%d failed: Expected:\n%s' % (i, binascii.hexlify(curRes.aBuf))); 3095 3096 fRc = False; 3096 3097 # Test final offset.
Note:
See TracChangeset
for help on using the changeset viewer.