2009-01-16 18:06:33 +00:00
#!/bin/sh
# Exercise a bug whereby defining a valid domain could kill libvirtd.
# The bug can also be exercised with a simple define/dumpxml pair to virsh.
2016-04-21 13:50:18 -04:00
. "$(dirname $0)/test-lib.sh"
2009-09-23 09:32:10 +02:00
2009-01-16 18:06:33 +00:00
if test "$VERBOSE" = yes; then
set -x
2009-09-23 09:32:10 +02:00
$abs_top_builddir/tools/virsh --version
2009-01-16 18:06:33 +00:00
fi
fail=0
# Domain definition from Cole Robinson.
cat <<\EOF > D.xml || fail=1
2011-07-11 19:29:09 +02:00
<domain type='test'>
2009-01-16 18:06:33 +00:00
<name>D</name>
<uuid>aaa3ae22-fed2-bfbd-ac02-3bea3bcfad82</uuid>
2012-02-22 17:48:38 -07:00
<memory unit='KiB'>262144</memory>
<currentMemory unit='KiB'>262144</currentMemory>
2012-05-09 00:04:36 +08:00
<vcpu placement='static'>1</vcpu>
2009-01-16 18:06:33 +00:00
<os>
<type arch='i686' machine='pc'>hvm</type>
<boot dev='cdrom'/>
</os>
<features>
<acpi/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
2019-11-29 16:33:37 +00:00
<emulator>/usr/bin/qemu-system-i386</emulator>
2012-02-08 01:48:25 +01:00
<controller type='usb' index='0'/>
2009-01-16 18:06:33 +00:00
<serial type='pty'>
<target port='0'/>
</serial>
<serial type='pty'>
<target port='1'/>
</serial>
<serial type='pty'>
<target port='2'/>
</serial>
<parallel type='pty'>
<target port='0'/>
</parallel>
<parallel type='pty'>
<target port='1'/>
</parallel>
<parallel type='pty'>
<target port='2'/>
</parallel>
<console type='pty'>
2010-07-22 13:56:21 -04:00
<target type='serial' port='0'/>
2009-01-16 18:06:33 +00:00
</console>
<sound model='pcspk'/>
<sound model='es1370'/>
2010-07-15 14:02:42 +01:00
<memballoon model='virtio'/>
2009-01-16 18:06:33 +00:00
</devices>
</domain>
EOF
url=test:///default
2009-09-23 09:32:10 +02:00
$abs_top_builddir/tools/virsh --connect "$url" 'define D.xml; dumpxml D' > out 2>&1 || fail=1
2009-01-16 18:06:33 +00:00
cat > exp <<EOF || fail=1
2021-01-05 13:02:34 +01:00
Domain 'D' defined from D.xml
2009-01-16 18:06:33 +00:00
$(cat D.xml)
EOF
compare exp out || fail=1
exit $fail