test: Add scsi vport nodedev to test:///default

A nodedev device definition like this is required for testing
NodeDeviceCreateXML and NodeDeviceDestroy. So unless it's part
of the stock test:///default set there's no way to actually
invoke those functions for the default URI
This commit is contained in:
Cole Robinson 2016-07-01 07:33:10 -04:00
parent 849ec0ce4b
commit 6fd8a1e614

View File

@ -466,6 +466,18 @@ static const char *defaultConnXML =
" </firmware>"
" </capability>"
"</device>"
"<device>"
" <name>test-scsi-host-vport</name>"
" <parent>computer</parent>"
" <capability type='scsi_host'>"
" <host>1</host>"
" <capability type='fc_host'>"
" <wwnn>2000000012341234</wwnn>"
" <wwpn>1000000012341234</wwpn>"
" </capability>"
" <capability type='vport_ops'/>"
" </capability>"
"</device>"
"</node>";