Changeset 85414 in vbox for trunk/src/VBox/ValidationKit/tests/autostart
- Timestamp:
- Jul 22, 2020 1:40:25 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py
r85377 r85414 1426 1426 oVM = self.createTestVM(self.ksOsLinux, 1, '6.0/ub1804piglit/ub1804piglit.vdi', sKind = 'Ubuntu_64', \ 1427 1427 fIoApic = True, eNic0AttachType = vboxcon.NetworkAttachmentType_NAT, \ 1428 eNic0Type = vboxcon.NetworkAdapterType_Am79C973, cMbRam = 4096, \1428 eNic0Type = vboxcon.NetworkAdapterType_Am79C973, cMbRam = 2048, \ 1429 1429 cCpus = 2, sDvdImage = self.sGuestAdditionsIso); 1430 1430 if oVM is None: … … 1433 1433 if self.ksOsWindows in self.asTestVMs: 1434 1434 # windows7piglit is created with PAE enabled and 2 CPUs. 1435 # changed cMbRam to 2GB due to #9618 1435 1436 oVM = self.createTestVM(self.ksOsWindows, 1, '6.0/windows7piglit/windows7piglit.vdi', sKind = 'Windows7_64', \ 1436 1437 fIoApic = True, eNic0AttachType = vboxcon.NetworkAttachmentType_NAT, \ 1437 sHddControllerType = "SATA Controller", cMbRam = 4096, fPae = True, cCpus = 2, \1438 sHddControllerType = "SATA Controller", cMbRam = 2048, fPae = True, cCpus = 2, \ 1438 1439 sDvdImage = self.sGuestAdditionsIso); 1439 1440 if oVM is None: … … 1445 1446 fRc = fRc and oSession.setVRamSize(256); 1446 1447 fRc = fRc and oSession.setVideoControllerType(vboxcon.GraphicsControllerType_VBoxSVGA) 1447 fRc = fRc and oSession.setAccelerate3DEnabled( True);1448 fRc = fRc and oSession.setAccelerate3DEnabled(False); 1448 1449 fRc = fRc and oSession.enableUsbOhci(True); 1449 1450 fRc = fRc and oSession.enableUsbHid(True);
Note:
See TracChangeset
for help on using the changeset viewer.