Changeset 84616 in vbox
- Timestamp:
- May 29, 2020 3:53:09 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py
r84615 r84616 585 585 It helps the terminateBySession to stop the VM without aborting. 586 586 """ 587 587 588 588 if oGuestSession is None: 589 589 return False; … … 600 600 Install guest additions in the guest. 601 601 """ 602 602 603 603 fRc = False; 604 604 # Install Kernel headers, which are required for actually installing the Linux Additions. … … 762 762 all calls will be perfomed using 'sudo -u sUser' 763 763 """ 764 764 765 765 _ = oSession; 766 766 … … 889 889 It helps the terminateBySession to stop the VM without aborting. 890 890 """ 891 891 892 892 if oGuestSession is None: 893 893 return False; … … 964 964 asLogFiles.append(sGuestAddsDir + 'install_drivers.log'); 965 965 asLogFiles.append('C:/Windows/setupapi.log'); 966 966 967 967 # Note: setupapi.dev.log only is available since Windows 2000. 968 968 if fHaveSetupApiDevLog: 969 969 asLogFiles.append('C:/Windows/setupapi.dev.log'); 970 970 971 971 # 972 972 # Download log files. … … 1065 1065 1066 1066 _ = oGuestSession; 1067 1067 1068 1068 fRc, oGuestSession = self.createSession(oSession, 'Session for user: %s' % (sUser,), 1069 1069 sUser, 'password', 10 * 1000, True);
Note:
See TracChangeset
for help on using the changeset viewer.