mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
tests/qemuxml2argvtest.c: add TPM Proxy command line tests
Add tests for both supported scenarios: a single TPM Proxy and a TPM Proxy with a regular TPM device in the same domain. Tested-by: Satheesh Rajendran <sathnaga@linux.vnet.ibm.com> Reviewed-by: Stefan Berger <stefanb@linux.ibm.com> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
9577d86f62
commit
b564332ba7
@ -0,0 +1,34 @@
|
|||||||
|
LC_ALL=C \
|
||||||
|
PATH=/bin \
|
||||||
|
HOME=/tmp/lib/domain--1-QEMUGuest1 \
|
||||||
|
USER=test \
|
||||||
|
LOGNAME=test \
|
||||||
|
XDG_DATA_HOME=/tmp/lib/domain--1-QEMUGuest1/.local/share \
|
||||||
|
XDG_CACHE_HOME=/tmp/lib/domain--1-QEMUGuest1/.cache \
|
||||||
|
XDG_CONFIG_HOME=/tmp/lib/domain--1-QEMUGuest1/.config \
|
||||||
|
QEMU_AUDIO_DRV=none \
|
||||||
|
/usr/bin/qemu-system-ppc64 \
|
||||||
|
-name guest=QEMUGuest1,debug-threads=on \
|
||||||
|
-S \
|
||||||
|
-object secret,id=masterKey0,format=raw,\
|
||||||
|
file=/tmp/lib/domain--1-QEMUGuest1/master-key.aes \
|
||||||
|
-machine pseries,accel=tcg,usb=off,dump-guest-core=off \
|
||||||
|
-cpu POWER9 \
|
||||||
|
-m 256 \
|
||||||
|
-overcommit mem-lock=off \
|
||||||
|
-smp 1,sockets=1,cores=1,threads=1 \
|
||||||
|
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
|
||||||
|
-display none \
|
||||||
|
-no-user-config \
|
||||||
|
-nodefaults \
|
||||||
|
-chardev socket,id=charmonitor,fd=1729,server,nowait \
|
||||||
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
|
-rtc base=utc \
|
||||||
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
|
-device pci-ohci,id=usb,bus=pci.0,addr=0x1 \
|
||||||
|
-device spapr-tpm-proxy,id=tpm0,host-path=/dev/tpmrm0 \
|
||||||
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x6 \
|
||||||
|
-sandbox on,obsolete=deny,elevateprivileges=deny,spawn=deny,\
|
||||||
|
resourcecontrol=deny \
|
||||||
|
-msg timestamp=on
|
@ -0,0 +1,37 @@
|
|||||||
|
LC_ALL=C \
|
||||||
|
PATH=/bin \
|
||||||
|
HOME=/tmp/lib/domain--1-QEMUGuest1 \
|
||||||
|
USER=test \
|
||||||
|
LOGNAME=test \
|
||||||
|
XDG_DATA_HOME=/tmp/lib/domain--1-QEMUGuest1/.local/share \
|
||||||
|
XDG_CACHE_HOME=/tmp/lib/domain--1-QEMUGuest1/.cache \
|
||||||
|
XDG_CONFIG_HOME=/tmp/lib/domain--1-QEMUGuest1/.config \
|
||||||
|
QEMU_AUDIO_DRV=none \
|
||||||
|
/usr/bin/qemu-system-ppc64 \
|
||||||
|
-name guest=QEMUGuest1,debug-threads=on \
|
||||||
|
-S \
|
||||||
|
-object secret,id=masterKey0,format=raw,\
|
||||||
|
file=/tmp/lib/domain--1-QEMUGuest1/master-key.aes \
|
||||||
|
-machine pseries,accel=tcg,usb=off,dump-guest-core=off \
|
||||||
|
-cpu POWER9 \
|
||||||
|
-m 256 \
|
||||||
|
-overcommit mem-lock=off \
|
||||||
|
-smp 1,sockets=1,cores=1,threads=1 \
|
||||||
|
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
|
||||||
|
-display none \
|
||||||
|
-no-user-config \
|
||||||
|
-nodefaults \
|
||||||
|
-chardev socket,id=charmonitor,fd=1729,server,nowait \
|
||||||
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
||||||
|
-rtc base=utc \
|
||||||
|
-no-shutdown \
|
||||||
|
-boot strict=on \
|
||||||
|
-device pci-ohci,id=usb,bus=pci.0,addr=0x1 \
|
||||||
|
-device spapr-tpm-proxy,id=tpm0,host-path=/dev/tpmrm0 \
|
||||||
|
-tpmdev emulator,id=tpm-tpm1,chardev=chrtpm \
|
||||||
|
-chardev socket,id=chrtpm,path=/dev/test \
|
||||||
|
-device tpm-spapr,tpmdev=tpm-tpm1,id=tpm1,reg=0x00004000 \
|
||||||
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x6 \
|
||||||
|
-sandbox on,obsolete=deny,elevateprivileges=deny,spawn=deny,\
|
||||||
|
resourcecontrol=deny \
|
||||||
|
-msg timestamp=on
|
@ -3056,6 +3056,9 @@ mymain(void)
|
|||||||
QEMU_CAPS_DEVICE_TPM_PASSTHROUGH,
|
QEMU_CAPS_DEVICE_TPM_PASSTHROUGH,
|
||||||
QEMU_CAPS_DEVICE_SPAPR_TPM_PROXY);
|
QEMU_CAPS_DEVICE_SPAPR_TPM_PROXY);
|
||||||
|
|
||||||
|
DO_TEST_CAPS_LATEST_PPC64("ppc64-tpmproxy-single");
|
||||||
|
DO_TEST_CAPS_LATEST_PPC64("ppc64-tpmproxy-with-tpm");
|
||||||
|
|
||||||
DO_TEST("aarch64-usb-controller-qemu-xhci",
|
DO_TEST("aarch64-usb-controller-qemu-xhci",
|
||||||
QEMU_CAPS_OBJECT_GPEX,
|
QEMU_CAPS_OBJECT_GPEX,
|
||||||
QEMU_CAPS_NEC_USB_XHCI,
|
QEMU_CAPS_NEC_USB_XHCI,
|
||||||
|
Loading…
Reference in New Issue
Block a user