Changeset 92310 in vbox for trunk/src/VBox/ValidationKit/tests/benchmarks/tdBenchmark2.py
- Timestamp:
- Nov 10, 2021 8:31:53 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/benchmarks/tdBenchmark2.py
r92308 r92310 161 161 oSession = self.startVm(oVM, sName = oTestVm.sVmName, asEnv = asEnv); 162 162 if oSession is not None: 163 cMsTimeout = 15 * 60000 + cMbRam / 256;163 cMsTimeout = 15 * 60000 + cMbRam // 168; 164 164 if not reporter.isLocal(): ## @todo need to figure a better way of handling timeouts on the testboxes ... 165 cMsTimeout = self.adjustTimeoutMs(180 * 60000 + cMbRam / 256);165 cMsTimeout = self.adjustTimeoutMs(180 * 60000 + cMbRam // 168); 166 166 167 167 oRc = self.waitForTasks(cMsTimeout);
Note:
See TracChangeset
for help on using the changeset viewer.