diff options
author | Thomas Huth <thuth@redhat.com> | 2017-10-06 15:53:19 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2018-01-22 08:39:05 +0100 |
commit | 73a7d31e53e2b34f83b5e138189b9bab1333f3b9 (patch) | |
tree | 385b47628828c4550a380a51b88ac9f7f5a696ef /tests/Makefile.include | |
parent | 80b8c0be748d2cf8a90955e409956cee1c932a38 (diff) | |
download | qemu-73a7d31e53e2b34f83b5e138189b9bab1333f3b9.zip qemu-73a7d31e53e2b34f83b5e138189b9bab1333f3b9.tar.gz qemu-73a7d31e53e2b34f83b5e138189b9bab1333f3b9.tar.bz2 |
tests/cpu-plug-test: Check CPU hot-plugging on ppc64, too
Hot plugging on ppc64 is possible via "device_add", too. Unlike x86,
we must not specify a 'socket-id' and 'thread-id' here, so this needs
to be done with a separate function that just specifies the 'core-id'
during the "device_add".
Reviewed-by: Daniel Barboza <danielhb@linux.vnet.ibm.com>
Tested-by: Daniel Barboza <danielhb@linux.vnet.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/Makefile.include')
-rw-r--r-- | tests/Makefile.include | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Makefile.include b/tests/Makefile.include index 669f7f6..092ad5f 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -340,6 +340,7 @@ check-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF) check-qtest-ppc64-y += tests/display-vga-test$(EXESUF) check-qtest-ppc64-y += tests/numa-test$(EXESUF) check-qtest-ppc64-$(CONFIG_IVSHMEM) += tests/ivshmem-test$(EXESUF) +check-qtest-ppc64-y += tests/cpu-plug-test$(EXESUF) check-qtest-sh4-y = tests/endianness-test$(EXESUF) |