summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCornelia Huck <cohuck@redhat.com>2017-08-16 10:26:50 +0200
committerDavid Gibson <david@gibson.dropbear.id.au>2017-08-22 11:09:59 +1000
commitb96919d765a65f5e0f140479f7da0b94521263c6 (patch)
tree977d4309c2b62cc433986ea72b49c079160bb42f
parent1f296733876434118fd766cfef5eb6f29ecab6a8 (diff)
downloadqemu-b96919d765a65f5e0f140479f7da0b94521263c6.tar.gz
boot-serial-test: prefer tcg accelerator
Prefer to use the tcg accelarator if it is available: This is our only real smoke test for tcg, and fast enough to use it for that. Fixes: 480bc11e6 ("boot-serial-test: fallback to kvm accelerator") Reported-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r--tests/boot-serial-test.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/boot-serial-test.c b/tests/boot-serial-test.c
index a8ca877168..b95c5e74ea 100644
--- a/tests/boot-serial-test.c
+++ b/tests/boot-serial-test.c
@@ -78,7 +78,11 @@ static void test_machine(const void *data)
fd = mkstemp(tmpname);
g_assert(fd != -1);
- args = g_strdup_printf("-M %s,accel=kvm:tcg "
+ /*
+ * Make sure that this test uses tcg if available: It is used as a
+ * fast-enough smoketest for that.
+ */
+ args = g_strdup_printf("-M %s,accel=tcg:kvm "
"-chardev file,id=serial0,path=%s "
"-no-shutdown -serial chardev:serial0 %s",
test->machine, tmpname, test->extra);