Loading
Commits on Source 6
-
Michal Privoznik authored
Introduced in libvirt commit v11.2.0-rc1~96. Signed-off-by:Michal Privoznik <mprivozn@redhat.com>
-
Michal Privoznik authored
Introduced in libvirt commit v11.2.0-rc1~115. Signed-off-by:Michal Privoznik <mprivozn@redhat.com>
-
Michal Privoznik authored
Introduced in libvirt commit v11.2.0-rc1~212. Signed-off-by:Michal Privoznik <mprivozn@redhat.com>
-
Michal Privoznik authored
The @port attribute for RDP graphics is declared to be omitted if empty: type DomainGraphicRDP struct { Port int `xml:"port,attr,omitempty"` .. } But libvirt itself forces port='0' to be formatted for RDP if autoport is enabled: static void virDomainGraphicsDefFormatRDP(...) { if (def->data.rdp.port) virBufferAsprintf(attrBuf, " port='%d'", def->data.rdp.port); else if (def->data.rdp.autoport) virBufferAddLit(attrBuf, " port='0'"); } But this makes our xmltest fail as there's an extra attribute. Add corresponding XPaths to extraExpectNodes to reflect this. Signed-off-by:
Michal Privoznik <mprivozn@redhat.com>
-
Signed-off-by:Harikumar Rajkumar <harirajkumar230@gmail.com>
-
Signed-off-by:Ben Coxford <bc185174@ncrvoyix.com>