Changeset 82623 in vbox for trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py
- Timestamp:
- Dec 19, 2019 2:55:38 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/storage/tdStorageBenchmark1.py
r80245 r82623 562 562 self.acCpusDef = [1, 2]; 563 563 self.acCpus = self.acCpusDef; 564 self.asStorageCtrlsDef = ['AHCI', 'IDE', 'LsiLogicSAS', 'LsiLogic', 'BusLogic', 'NVMe' ];564 self.asStorageCtrlsDef = ['AHCI', 'IDE', 'LsiLogicSAS', 'LsiLogic', 'BusLogic', 'NVMe', 'VirtIoScsi']; 565 565 self.asStorageCtrls = self.asStorageCtrlsDef; 566 566 self.asHostIoCacheDef = ['default', 'hostiocache', 'no-hostiocache']; … … 951 951 elif sStorageCtrl == 'NVMe': 952 952 eStorageCtrl = vboxcon.StorageControllerType_NVMe; 953 elif sStorageCtrl == 'VirtIoScsi': 954 eStorageCtrl = vboxcon.StorageControllerType_VirtioSCSI; 953 955 954 956 return eStorageCtrl; … … 973 975 if eStorageCtrl == vboxcon.StorageControllerType_NVMe: 974 976 return ('nvme', False); 977 if eStorageCtrl == vboxcon.StorageControllerType_VirtioSCSI: 978 return ('virtio-scsi', True); 975 979 976 980 return ('<invalid>', False);
Note:
See TracChangeset
for help on using the changeset viewer.