VirtualBox

Changeset 84246 in vbox for trunk/src/VBox


Ignore:
Timestamp:
May 11, 2020 10:36:00 AM (5 years ago)
Author:
vboxsync
Message:

Validation Kit/tdAddGuestCtrl: Some more std[err|out] output fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py

    r84244 r84246  
    22572257                                        reporter.log2('Process (PID %d) got %d bytes of %s data (type: %s)'
    22582258                                                      % (iPid, len(abBuf), sFdNm, type(abBuf)));
    2259                                         if isinstance(abBuf, str):
    2260                                             pass;
     2259                                        sBuf = '';
    22612260                                        if sys.version_info >= (2, 7):
    22622261                                            if isinstance(abBuf, memoryview): ## @todo Why is this happening?
    22632262                                                abBuf = abBuf.tobytes();
    2264                                         for sLine in abBuf.decode("utf-8").splitlines():
     2263                                                sBuf  = abBuf.decode("utf-8");
     2264                                        if isinstance(abBuf, buffer):
     2265                                            sBuf = abBuf;
     2266                                        for sLine in sBuf.splitlines():
    22652267                                            reporter.log('%s: %s' % (sFdNm, sLine));
    22662268                                        acbFdOut[iFd] += len(abBuf);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette