Changeset 101035 in vbox for trunk/src/VBox/ValidationKit/tests/storage
- Timestamp:
- Sep 7, 2023 8:59:15 AM (18 months ago)
- svn:sync-xref-src-repo-rev:
- 158992
- Location:
- trunk/src/VBox/ValidationKit/tests/storage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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();
Note:
See TracChangeset
for help on using the changeset viewer.