Changeset 101035 in vbox for trunk/src/VBox/ValidationKit/tests
- Timestamp:
- Sep 7, 2023 8:59:15 AM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 158992
- Location:
- trunk/src/VBox/ValidationKit/tests
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/autostart/tdAutostart1.py
r98651 r101035 625 625 oSession = oTestDrv.openSession(oVM); 626 626 if oSession is not None: 627 fRc = fRc and oSession.enableVirtEx (True);628 fRc = fRc and oSession.enableNestedPaging (True);629 fRc = fRc and oSession.enableNestedHwVirt (True);630 # disable 3D until the error is fixed. 627 fRc = fRc and oSession.enableVirtExX86(True); 628 fRc = fRc and oSession.enableNestedPagingX86(True); 629 fRc = fRc and oSession.enableNestedHwVirtX86(True); 630 # disable 3D until the error is fixed. ## @todo r=andy Which error? 631 631 fRc = fRc and oSession.setAccelerate3DEnabled(False); 632 632 fRc = fRc and oSession.setVRamSize(256); -
trunk/src/VBox/ValidationKit/tests/benchmarks/tdBenchmark2.py
r98651 r101035 156 156 if oSession: 157 157 fRc = oSession.setRamSize(cMbRam); 158 fRc = oSession.setLargePages (fLargePages) and fRc;158 fRc = oSession.setLargePagesX86(fLargePages) and fRc; 159 159 if fRc: 160 160 fRc = oSession.saveSettings(); -
trunk/src/VBox/ValidationKit/tests/cpu/tdCpuPae1.py
r98651 r101035 182 182 oSession = self.openSession(oVM); 183 183 if oSession is not None: 184 fRc = fRc and oSession.enableVirtEx (fHwVirt);185 fRc = fRc and oSession.enableNestedPaging (fNestedPaging);184 fRc = fRc and oSession.enableVirtExX86(fHwVirt); 185 fRc = fRc and oSession.enableNestedPagingX86(fNestedPaging); 186 186 fRc = fRc and oSession.setCpuCount(cCpus); 187 187 fRc = fRc and oSession.setupBootLogo(True, 2500); # Race avoidance fudge. -
trunk/src/VBox/ValidationKit/tests/installation/tdGuestOsInstOs2.py
r98651 r101035 191 191 192 192 # Enable HW virt 193 fRc = fRc and oSession.enableVirtEx (True)193 fRc = fRc and oSession.enableVirtExX86(True) 194 194 195 195 # Enable I/O APIC … … 197 197 198 198 # Enable Nested Paging 199 fRc = fRc and oSession.enableNestedPaging (self.fEnableNestedPaging)199 fRc = fRc and oSession.enableNestedPagingX86(self.fEnableNestedPaging) 200 200 201 201 # Enable PAE 202 fRc = fRc and oSession.enablePae (self.fEnablePAE)202 fRc = fRc and oSession.enablePaeX86(self.fEnablePAE) 203 203 204 204 # Remote desktop -
trunk/src/VBox/ValidationKit/tests/installation/tdGuestOsUnattendedInst1.py
r98651 r101035 299 299 # I/O APIC: 300 300 if self.fOptPae is not None: 301 fRc = oSession.enablePae (self.fOptPae) and fRc;301 fRc = oSession.enablePaeX86(self.fOptPae) and fRc; 302 302 303 303 # Set extra data -
trunk/src/VBox/ValidationKit/tests/network/tdNetBenchmark1.py
r98651 r101035 495 495 if oSession is not None: 496 496 fRc = fRc and oSession.setNicType(eNicType); 497 fRc = fRc and oSession.enableVirtEx (fHwVirt);498 fRc = fRc and oSession.enableNestedPaging (fNestedPaging);497 fRc = fRc and oSession.enableVirtExX86(fHwVirt); 498 fRc = fRc and oSession.enableNestedPagingX86(fNestedPaging); 499 499 fRc = fRc and oSession.setCpuCount(cCpus); 500 500 fRc = fRc and oSession.saveSettings(); -
trunk/src/VBox/ValidationKit/tests/shutdown/tdGuestOsShutdown1.py
r98651 r101035 198 198 199 199 # Enable HW virt 200 fRc = fRc and oSession.enableVirtEx (True)200 fRc = fRc and oSession.enableVirtExX86(True) 201 201 202 202 # Enable I/O APIC … … 204 204 205 205 # Enable Nested Paging 206 fRc = fRc and oSession.enableNestedPaging (self.fEnableNestedPaging)206 fRc = fRc and oSession.enableNestedPagingX86(self.fEnableNestedPaging) 207 207 208 208 # Enable PAE 209 fRc = fRc and oSession.enablePae (self.fEnablePAE)209 fRc = fRc and oSession.enablePaeX86(self.fEnablePAE) 210 210 211 211 if (sNicTraceFile is not None): -
trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py
r98763 r101035 1274 1274 reporter.logXcpt(); 1275 1275 1276 fRc = fRc and oSession.enableVirtEx (fHwVirt);1277 fRc = fRc and oSession.enableNestedPaging (fNestedPaging);1276 fRc = fRc and oSession.enableVirtExX86(fHwVirt); 1277 fRc = fRc and oSession.enableNestedPagingX86(fNestedPaging); 1278 1278 fRc = fRc and oSession.setCpuCount(cCpus); 1279 1279 fRc = fRc and oSession.saveSettings(); -
trunk/src/VBox/ValidationKit/tests/storage/tdStorageRawDrive1.py
r98651 r101035 862 862 oSession = oTestDrv.openSession(oVM); 863 863 if oSession is not None: 864 fRc = fRc and oSession.enableVirtEx (True);864 fRc = fRc and oSession.enableVirtExX86(True); 865 865 # nested paging doesn't need for the test 866 #fRc = fRc and oSession.enableNestedPaging (True);867 #fRc = fRc and oSession.enableNestedHwVirt (True);866 #fRc = fRc and oSession.enableNestedPagingX86(True); 867 #fRc = fRc and oSession.enableNestedHwVirtX86(True); 868 868 # disable 3D until the error is fixed. 869 869 fRc = fRc and oSession.setAccelerate3DEnabled(False); -
trunk/src/VBox/ValidationKit/tests/storage/tdStorageStress1.py
r98651 r101035 379 379 fRc = fRc and oSession.createAndAttachHd(sDiskPath2, sDiskFormat, self.controllerTypeToName(eStorageController), 380 380 cb = 10*1024*1024*1024, iPort = 2, fImmutable = False); 381 fRc = fRc and oSession.enableVirtEx (fHwVirt);382 fRc = fRc and oSession.enableNestedPaging (fNestedPaging);381 fRc = fRc and oSession.enableVirtExX86(fHwVirt); 382 fRc = fRc and oSession.enableNestedPagingX86(fNestedPaging); 383 383 fRc = fRc and oSession.setCpuCount(cCpus); 384 384 fRc = fRc and oSession.saveSettings(); -
trunk/src/VBox/ValidationKit/tests/teleportation/tdTeleportLocal1.py
r98651 r101035 418 418 oSession = self.openSession(oVmSrc); 419 419 if oSession is not None: 420 fRc = fRc and oSession.enableVirtEx (fHwVirt);421 fRc = fRc and oSession.enableNestedPaging (fNestedPaging);420 fRc = fRc and oSession.enableVirtExX86(fHwVirt); 421 fRc = fRc and oSession.enableNestedPagingX86(fNestedPaging); 422 422 fRc = fRc and oSession.setCpuCount(cCpus); 423 423 fRc = fRc and oSession.setupTeleporter(False, uPort=6501, sPassword='password'); … … 432 432 oSession = self.openSession(oVmDst); 433 433 if oSession is not None: 434 fRc = fRc and oSession.enableVirtEx (fHwVirt);435 fRc = fRc and oSession.enableNestedPaging (fNestedPaging);434 fRc = fRc and oSession.enableVirtExX86(fHwVirt); 435 fRc = fRc and oSession.enableNestedPagingX86(fNestedPaging); 436 436 fRc = fRc and oSession.setCpuCount(cCpus); 437 437 fRc = fRc and oSession.setupTeleporter(True, uPort=6502, sPassword='password'); -
trunk/src/VBox/ValidationKit/tests/usb/tdUsb1.py
r98651 r101035 497 497 oSession = self.openSession(oVM); 498 498 if oSession is not None: 499 fRc = fRc and oSession.enableVirtEx (True);500 fRc = fRc and oSession.enableNestedPaging (True);499 fRc = fRc and oSession.enableVirtExX86(True); 500 fRc = fRc and oSession.enableNestedPagingX86(True); 501 501 502 502 # Make sure controllers are disabled initially.
Note:
See TracChangeset
for help on using the changeset viewer.