All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL for-2.10 0/1] bugfix for boot-serial-test and no tcg
@ 2017-08-11 14:06 Cornelia Huck
  2017-08-11 14:06 ` [Qemu-devel] [PULL for-2.10 1/1] boot-serial-test: fallback to kvm accelerator Cornelia Huck
  2017-08-14 10:41 ` [Qemu-devel] [PULL for-2.10 0/1] bugfix for boot-serial-test and no tcg Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: Cornelia Huck @ 2017-08-11 14:06 UTC (permalink / raw)
  To: peter.maydell; +Cc: qemu-devel, thuth, pbonzini, berrange, Cornelia Huck

The following changes since commit 473a321122fd3c2c327a5a5d01a9a41f26f1734c:

  Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2017-08-10 17:50:55 +0100)

are available in the git repository at:

  git://github.com/cohuck/qemu tags/boot-serial-no-tcg-20170811

for you to fetch changes up to 480bc11e61693796debd3a9566be0ca1795bb7b7:

  boot-serial-test: fallback to kvm accelerator (2017-08-11 15:44:05 +0200)

----------------------------------------------------------------
Fix the boot-serial test to work with the new --disable-tcg.

----------------------------------------------------------------

Cornelia Huck (1):
  boot-serial-test: fallback to kvm accelerator

 tests/boot-serial-test.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

-- 
2.13.4

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Qemu-devel] [PULL for-2.10 1/1] boot-serial-test: fallback to kvm accelerator
  2017-08-11 14:06 [Qemu-devel] [PULL for-2.10 0/1] bugfix for boot-serial-test and no tcg Cornelia Huck
@ 2017-08-11 14:06 ` Cornelia Huck
  2017-08-14 10:41 ` [Qemu-devel] [PULL for-2.10 0/1] bugfix for boot-serial-test and no tcg Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Cornelia Huck @ 2017-08-11 14:06 UTC (permalink / raw)
  To: peter.maydell; +Cc: qemu-devel, thuth, pbonzini, berrange, Cornelia Huck

Currently, at least x86_64 and s390x support building with --disable-tcg.
Instead of forcing tcg (which causes the test to fail on such builds),
allow to use kvm as well.

Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 tests/boot-serial-test.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/boot-serial-test.c b/tests/boot-serial-test.c
index 11f48b049c..a8ca877168 100644
--- a/tests/boot-serial-test.c
+++ b/tests/boot-serial-test.c
@@ -78,8 +78,9 @@ static void test_machine(const void *data)
     fd = mkstemp(tmpname);
     g_assert(fd != -1);
 
-    args = g_strdup_printf("-M %s,accel=tcg -chardev file,id=serial0,path=%s"
-                           " -no-shutdown -serial chardev:serial0 %s",
+    args = g_strdup_printf("-M %s,accel=kvm:tcg "
+                           "-chardev file,id=serial0,path=%s "
+                           "-no-shutdown -serial chardev:serial0 %s",
                            test->machine, tmpname, test->extra);
 
     qtest_start(args);
-- 
2.13.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PULL for-2.10 0/1] bugfix for boot-serial-test and no tcg
  2017-08-11 14:06 [Qemu-devel] [PULL for-2.10 0/1] bugfix for boot-serial-test and no tcg Cornelia Huck
  2017-08-11 14:06 ` [Qemu-devel] [PULL for-2.10 1/1] boot-serial-test: fallback to kvm accelerator Cornelia Huck
@ 2017-08-14 10:41 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2017-08-14 10:41 UTC (permalink / raw)
  To: Cornelia Huck
  Cc: QEMU Developers, Thomas Huth, Paolo Bonzini, Daniel P. Berrange

On 11 August 2017 at 15:06, Cornelia Huck <cohuck@redhat.com> wrote:
> The following changes since commit 473a321122fd3c2c327a5a5d01a9a41f26f1734c:
>
>   Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2017-08-10 17:50:55 +0100)
>
> are available in the git repository at:
>
>   git://github.com/cohuck/qemu tags/boot-serial-no-tcg-20170811
>
> for you to fetch changes up to 480bc11e61693796debd3a9566be0ca1795bb7b7:
>
>   boot-serial-test: fallback to kvm accelerator (2017-08-11 15:44:05 +0200)
>
> ----------------------------------------------------------------
> Fix the boot-serial test to work with the new --disable-tcg.
>
> ----------------------------------------------------------------
>
> Cornelia Huck (1):
>   boot-serial-test: fallback to kvm accelerator
>
>  tests/boot-serial-test.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-08-14 10:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-11 14:06 [Qemu-devel] [PULL for-2.10 0/1] bugfix for boot-serial-test and no tcg Cornelia Huck
2017-08-11 14:06 ` [Qemu-devel] [PULL for-2.10 1/1] boot-serial-test: fallback to kvm accelerator Cornelia Huck
2017-08-14 10:41 ` [Qemu-devel] [PULL for-2.10 0/1] bugfix for boot-serial-test and no tcg Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.