Changeset 84699 in vbox
- Timestamp:
- Jun 5, 2020 3:26:43 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138470
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py
r84655 r84699 667 667 668 668 (fRc, _, _, _) = self.guestProcessExecute(oGuestSession, 'Installing guest additions', 669 5* 60 *1000, '/usr/bin/sudo',669 10 * 60 *1000, '/usr/bin/sudo', 670 670 ['/usr/bin/sudo', '/bin/sh', 671 671 '/media/cdrom/VBoxLinuxAdditions.run'], … … 1021 1021 oWrapperProgress = vboxwrappers.ProgressWrapper(oCurProgress, self.oTestDriver.oVBoxMgr, 1022 1022 self.oTestDriver, "installAdditions"); 1023 oWrapperProgress.wait( );1023 oWrapperProgress.wait(cMsTimeout = 10 * 60 * 1000); 1024 1024 if not oWrapperProgress.isSuccess(): 1025 1025 oWrapperProgress.logResult(fIgnoreErrors = False); … … 1536 1536 fRc = fRc and oSession.enableNestedPaging(True); 1537 1537 fRc = fRc and oSession.enableNestedHwVirt(True); 1538 # disable 3D until the error is fixed. 1539 fRc = fRc and oSession.setAccelerate3DEnabled(False); 1538 1540 fRc = fRc and oSession.saveSettings(); 1539 1541 fRc = oSession.close() and fRc and True; # pychecker hack.
Note:
See TracChangeset
for help on using the changeset viewer.