use of com.cloud.hypervisor.kvm.resource.LibvirtVMDef.DiskDef in project cloudstack by apache.
the class LibvirtComputingResourceTest method setDiskIoDriverTestLibvirtSupportsIoUring.
@Test
public void setDiskIoDriverTestLibvirtSupportsIoUring() {
DiskDef diskDef = configureAndTestSetDiskIoDriverTest(123l, HYPERVISOR_QEMU_VERSION_SUPPORTS_IOURING);
Assert.assertNotEquals(DiskDef.IoDriver.IOURING, diskDef.getIoDriver());
}
use of com.cloud.hypervisor.kvm.resource.LibvirtVMDef.DiskDef in project cloudstack by apache.
the class LibvirtComputingResourceTest method setDiskIoDriverTestIoUring.
public void setDiskIoDriverTestIoUring() {
DiskDef diskDef = configureAndTestSetDiskIoDriverTest(HYPERVISOR_LIBVIRT_VERSION_SUPPORTS_IOURING, HYPERVISOR_QEMU_VERSION_SUPPORTS_IOURING);
Assert.assertEquals(DiskDef.IoDriver.IOURING, diskDef.getIoDriver());
}
Aggregations