2009-01-16 21:06:33 +03: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 20:50:18 +03:00
. "$(dirname $0)/test-lib.sh"
2009-09-23 11:32:10 +04:00
2009-01-16 21:06:33 +03:00
if test "$VERBOSE" = yes; then
set -x
2009-09-23 11:32:10 +04:00
$abs_top_builddir/tools/virsh --version
2009-01-16 21:06:33 +03:00
fi
fail=0
# Domain definition from Cole Robinson.
cat <<\EOF > D.xml || fail=1
2011-07-11 21:29:09 +04:00
<domain type='test'>
2009-01-16 21:06:33 +03:00
<name>D</name>
<uuid>aaa3ae22-fed2-bfbd-ac02-3bea3bcfad82</uuid>
2012-02-23 04:48:38 +04:00
<memory unit='KiB'>262144</memory>
<currentMemory unit='KiB'>262144</currentMemory>
2012-05-08 20:04:36 +04:00
<vcpu placement='static'>1</vcpu>
2009-01-16 21:06:33 +03: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>
2017-04-06 19:19:48 +03:00
<emulator>/usr/bin/qemu-system-i686</emulator>
2012-02-08 04:48:25 +04:00
<controller type='usb' index='0'/>
2009-01-16 21:06:33 +03: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 21:56:21 +04:00
<target type='serial' port='0'/>
2009-01-16 21:06:33 +03:00
</console>
<sound model='pcspk'/>
<sound model='es1370'/>
2010-07-15 17:02:42 +04:00
<memballoon model='virtio'/>
2009-01-16 21:06:33 +03:00
</devices>
</domain>
EOF
url=test:///default
2009-09-23 11:32:10 +04:00
$abs_top_builddir/tools/virsh --connect "$url" 'define D.xml; dumpxml D' > out 2>&1 || fail=1
2009-01-16 21:06:33 +03:00
cat > exp <<EOF || fail=1
Domain D defined from D.xml
$(cat D.xml)
EOF
compare exp out || fail=1
exit $fail