mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 21:01:13 +00:00
911b61299a
The 'numatune-memory' case is completely dropped as it's sufficiently covered by 'numatune-memnode'. The positive fake-caps version of 'numatune-memnode' is dropped as it's covered by the two existing real caps invocations. 'numatune-memory-invalid-nodeset', 'numatune-memnode-invalid-mode', 'numatune-memnode-nocpu', 'numatune-memnodes-problematic' parsing error negative cases are converted to use latest capabilities. 'numatune-static-nodeset-exceed-hostnode' commandline generation failure negative case is converted to use latest capabilities. 'numatune-memnode-no-memory', 'numatune-distances', 'numatune-auto-nodeset-invalid', 'numatune-auto-prefer' positive cases are converted to use latest capabilities. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/var/lib/libvirt/qemu/domain--1-QEMUGuest \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
XDG_DATA_HOME=/var/lib/libvirt/qemu/domain--1-QEMUGuest/.local/share \
|
|
XDG_CACHE_HOME=/var/lib/libvirt/qemu/domain--1-QEMUGuest/.cache \
|
|
XDG_CONFIG_HOME=/var/lib/libvirt/qemu/domain--1-QEMUGuest/.config \
|
|
/usr/bin/qemu-system-x86_64 \
|
|
-name guest=QEMUGuest,debug-threads=on \
|
|
-S \
|
|
-object '{"qom-type":"secret","id":"masterKey0","format":"raw","file":"/var/lib/libvirt/qemu/domain--1-QEMUGuest/master-key.aes"}' \
|
|
-machine pc,usb=off,dump-guest-core=off,acpi=off \
|
|
-accel tcg \
|
|
-cpu qemu64 \
|
|
-m size=65536k \
|
|
-overcommit mem-lock=off \
|
|
-smp 2,sockets=2,cores=1,threads=1 \
|
|
-object '{"qom-type":"memory-backend-ram","id":"ram-node0","size":33554432,"host-nodes":[3],"policy":"preferred"}' \
|
|
-numa node,nodeid=0,cpus=0,memdev=ram-node0 \
|
|
-object '{"qom-type":"memory-backend-ram","id":"ram-node1","size":33554432}' \
|
|
-numa node,nodeid=1,cpus=1,memdev=ram-node1 \
|
|
-uuid 9f4b6512-e73a-4a25-93e8-5307802821ce \
|
|
-display none \
|
|
-no-user-config \
|
|
-nodefaults \
|
|
-chardev socket,id=charmonitor,fd=1729,server=on,wait=off \
|
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
-rtc base=utc \
|
|
-no-shutdown \
|
|
-boot strict=on \
|
|
-device '{"driver":"piix3-usb-uhci","id":"usb","bus":"pci.0","addr":"0x1.0x2"}' \
|
|
-audiodev '{"id":"audio1","driver":"none"}' \
|
|
-device '{"driver":"virtio-balloon-pci","id":"balloon0","bus":"pci.0","addr":"0x2"}' \
|
|
-sandbox on,obsolete=deny,elevateprivileges=deny,spawn=deny,resourcecontrol=deny \
|
|
-msg timestamp=on
|