VirtualBox

Ignore:
Timestamp:
Jun 10, 2020 1:13:43 PM (5 years ago)
Author:
vboxsync
Message:

Main: bugref:9341: Added log about nested VM existence

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py

    r84699 r84757  
    11801180            reporter.error('Create session for user %s failed' % sUser);
    11811181        else:
     1182           
     1183            #---- report tasklist for debug purpose -----
    11821184            (fRc, _, _, aBuf) = self.guestProcessExecute(oGuestSession, 'Check for running VM',
    1183                                                        30 * 1000, 'C:\\Program Files\\Oracle\\VirtualBox\\VBoxManage.exe',
     1185                                                       60 * 1000, 'C:\\Windows\\System32\\tasklist.exe',
     1186                                                       ['C:\\Windows\\System32\\tasklist.exe', '/m',
     1187                                                        'vboxheadless*', '/nh'], True, True);
     1188            try:
     1189                sTaskList = str(aBuf);
     1190                reporter.log("Guest tasks for user %s: %s" % (sUser, sTaskList));
     1191            except:
     1192                pass;
     1193            #---- end report tasklist for debug purpose -----
     1194           
     1195            (fRc, _, _, aBuf) = self.guestProcessExecute(oGuestSession, 'Check for running VM',
     1196                                                       60 * 1000, 'C:\\Program Files\\Oracle\\VirtualBox\\VBoxManage.exe',
    11841197                                                       ['C:\\Program Files\\Oracle\\VirtualBox\\VBoxManage.exe',
    11851198                                                        'list', 'runningvms'], True, True);
     
    11871200                reporter.error('Checking the VM %s is running for user %s failed' % (sVmName, sUser));
    11881201            else:
     1202               
    11891203                bufWrapper = VBoxManageStdOutWrapper();
    11901204                bufWrapper.write(aBuf);
     
    14891503                            (fRc, oGuestSession) = oGuestOsHlp.rebootVMAndCheckReady(oSession, oGuestSession);
    14901504                            if fRc is True:
    1491                                 # Fudge factor - Allow the guest to finish starting up.
    1492                                 self.sleep(30);
     1505                                # Fudge factor - Allow the guest VMs to finish starting up.
     1506                                self.sleep(60);
    14931507                                fRc = oGuestOsHlp.checkForRunningVM(oSession, oGuestSession, sTestUserAllow, sTestVmName);
    14941508                                if fRc is True:
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette