mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 13:20:20 +00:00
caccbba64a
The field was added in qemu v0.13.0-rc0-731-g1ca4d09ae0 so all supported qemu versions now use it. There's a LOT of test fallout as we did not use capabilities close enough to upstream for many of our tests. Several tests had a 'bootindex' variant. Since they'd become redundant they are also removed here. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
31 lines
954 B
Plaintext
31 lines
954 B
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/home/test \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
QEMU_AUDIO_DRV=none \
|
|
/usr/bin/qemu-system-ppc64 \
|
|
-name QEMUGuest1 \
|
|
-S \
|
|
-machine pseries,accel=tcg,usb=off,dump-guest-core=off \
|
|
-m 2048 \
|
|
-smp 8,sockets=2,cores=1,threads=4 \
|
|
-object memory-backend-ram,id=ram-node0,size=1073741824,host-nodes=1,\
|
|
policy=bind \
|
|
-numa node,nodeid=0,cpus=0-3,memdev=ram-node0 \
|
|
-object memory-backend-ram,id=ram-node1,size=1073741824,host-nodes=2,\
|
|
policy=bind \
|
|
-numa node,nodeid=1,cpus=4-7,memdev=ram-node1 \
|
|
-uuid 87eedafe-eedc-4336-8130-ed9fe5dc90c8 \
|
|
-display none \
|
|
-no-user-config \
|
|
-nodefaults \
|
|
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
|
|
server,nowait \
|
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
-rtc base=utc \
|
|
-no-shutdown \
|
|
-device spapr-pci-host-bridge,index=1,id=pci.1,numa_node=1 \
|
|
-device spapr-pci-host-bridge,index=2,id=pci.2 \
|
|
-device spapr-pci-host-bridge,index=3,id=pci.3,numa_node=0
|