Changeset 84659 in vbox
- Timestamp:
- Jun 3, 2020 11:44:11 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/txsclient.py
r82968 r84659 280 280 abMsg.append(0); 281 281 282 reporter.log2('sendMsgInt: op=%s len=%d t o=%d' % (sOpcode, len(abMsg), cMsTimeout));282 reporter.log2('sendMsgInt: op=%s len=%d timeout=%d' % (sOpcode, len(abMsg), cMsTimeout)); 283 283 return self.sendBytes(abMsg, cMsTimeout); 284 284 … … 643 643 rc = self.waitForTask(self.cMsTimeout + 5000); 644 644 if rc is False: 645 reporter.maybeErr(self.fErr, 'asyncToSync: waitForTask failed...');645 reporter.maybeErr(self.fErr, 'asyncToSync: waitForTask (timeout %d) failed...' % (self.cMsTimeout,)); 646 646 self.cancelTask(); 647 647 #reporter.log2('asyncToSync(%s): returns False (#2)' % (fnAsync, rc)); … … 1635 1635 Returns timeout in milliseconds. 1636 1636 """ 1637 return 30000 + cbFile / 256; # 256KiB/s (picked out of thin air)1637 return 30000 + cbFile / 32; # 32 KiB/s (picked out of thin air) 1638 1638 1639 1639 @staticmethod
Note:
See TracChangeset
for help on using the changeset viewer.