Changeset 61458 in vbox
- Timestamp:
- Jun 4, 2016 12:02:44 AM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/ValidationKit/testdriver/base.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/base.py
r59813 r61458 845 845 if self.secTimeoutAbs is not None: 846 846 self.secTimeoutAbs = long(self.secTimeoutAbs); 847 reporter.log('secTimeoutAbs: %s' % (self.secTimeoutAbs,)); 848 else: 849 reporter.log('TESTBOX_TIMEOUT_ABS not found in the environment'); 850 847 851 848 852 # Distance from secTimeoutAbs that timeouts should be adjusted to. … … 869 873 print >> sys.stderr, "testdriver.base: asNormalActions = '%s'" % self.asNormalActions; 870 874 print >> sys.stderr, "testdriver.base: asActions = '%s'" % self.asActions; 875 print >> sys.stderr, "testdriver.base: secTimeoutAbs = '%s'" % self.secTimeoutAbs; 876 for sVar in sorted(os.environ.keys()): 877 print >> sys.stderr, "os.environ[%s] = '%s'" % (sVar, os.environ[sVar],); 871 878 872 879 # … … 1244 1251 reporter.log('adjusting timeout: %s ms -> %s ms (deadline)\n' % (cMsTimeout, cMsToDeadline,)); 1245 1252 return cMsToDeadline; 1246 1247 #else: Don't bother, we've passed the deadline. 1253 reporter.log('adjustTimeoutMs: cMsTimeout (%s) > cMsToDeadline (%s)' % (cMsTimeout, cMsToDeadline,)); 1254 else: 1255 # Don't bother, we've passed the deadline. 1256 reporter.log('adjustTimeoutMs: ooops! cMsToDeadline=%s (%s), utils.timestampMilli()=%s' 1257 % (cMsToDeadline, cMsToDeadline*1000, utils.timestampMilli(),)); 1248 1258 1249 1259 # Only enforce the minimum timeout if specified.
Note:
See TracChangeset
for help on using the changeset viewer.

