diff options
author | Thomas Huth <thuth@redhat.com> | 2018-12-17 17:57:37 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2018-12-20 11:19:12 -0500 |
commit | cc425b5ddfe8f8474814f369409e637c36898542 (patch) | |
tree | 1617795c64d0eb5dfc68b0f4ab9e7d536b14dd33 /tests/cpu-plug-test.c | |
parent | d6caf3631cf561f814aa449bbf9bcb03b86acd2f (diff) | |
download | qemu-cc425b5ddfe8f8474814f369409e637c36898542.zip qemu-cc425b5ddfe8f8474814f369409e637c36898542.tar.gz qemu-cc425b5ddfe8f8474814f369409e637c36898542.tar.bz2 |
hw/i386: Remove deprecated machines pc-0.10 and pc-0.11
They've been deprecated for two releases and nobody complained that they
are still required anymore, so it's time to remove these now.
And while we're at it, mark the other remaining old 0.x machine types
as deprecated (since they can not properly be used for live-migration
anyway).
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'tests/cpu-plug-test.c')
-rw-r--r-- | tests/cpu-plug-test.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/cpu-plug-test.c b/tests/cpu-plug-test.c index f4a677d..668f001 100644 --- a/tests/cpu-plug-test.c +++ b/tests/cpu-plug-test.c @@ -157,9 +157,7 @@ static void add_pc_test_case(const char *mname) (strcmp(mname, "pc-0.15") == 0) || (strcmp(mname, "pc-0.14") == 0) || (strcmp(mname, "pc-0.13") == 0) || - (strcmp(mname, "pc-0.12") == 0) || - (strcmp(mname, "pc-0.11") == 0) || - (strcmp(mname, "pc-0.10") == 0)) { + (strcmp(mname, "pc-0.12") == 0)) { path = g_strdup_printf("cpu-plug/%s/init/%ux%ux%u&maxcpus=%u", mname, data->sockets, data->cores, data->threads, data->maxcpus); |