* [Qemu-devel] [PULL for-2.6 0/1] qemu-ga patch queue for 2.6
@ 2016-04-19 22:34 Michael Roth
2016-04-19 22:34 ` [Qemu-devel] [PULL 1/1] qemu-ga: do not run qga test when guest agent disabled Michael Roth
2016-04-20 15:16 ` [Qemu-devel] [PULL for-2.6 0/1] qemu-ga patch queue for 2.6 Peter Maydell
0 siblings, 2 replies; 3+ messages in thread
From: Michael Roth @ 2016-04-19 22:34 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-stable, peter.maydell
The following changes since commit 1f7685fafa6ba1354731a59822e5cc43323d6989:
Update language files for QEMU 2.6.0 (2016-04-19 18:41:25 +0100)
are available in the git repository at:
git://github.com/mdroth/qemu.git tags/qga-pull-2016-04-19-tag
for you to fetch changes up to fb91f30bb9716c391ce0441942fffa601ad99684:
qemu-ga: do not run qga test when guest agent disabled (2016-04-19 16:51:15 -0500)
----------------------------------------------------------------
qemu-ga patch queue for 2.6
* fixes inadvertant change that unconditionally disables qemu-ga unit test
* fixes make check failures when building with --disable-guest-agent that
were present visible before the unit test was inadvertantly disabled.
----------------------------------------------------------------
Yang Hongyang (1):
qemu-ga: do not run qga test when guest agent disabled
tests/Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Qemu-devel] [PULL 1/1] qemu-ga: do not run qga test when guest agent disabled
2016-04-19 22:34 [Qemu-devel] [PULL for-2.6 0/1] qemu-ga patch queue for 2.6 Michael Roth
@ 2016-04-19 22:34 ` Michael Roth
2016-04-20 15:16 ` [Qemu-devel] [PULL for-2.6 0/1] qemu-ga patch queue for 2.6 Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Michael Roth @ 2016-04-19 22:34 UTC (permalink / raw)
To: qemu-devel
Cc: qemu-stable, peter.maydell, Yang Hongyang, Gerd Hoffmann,
Michael S. Tsirkin, Paolo Bonzini
From: Yang Hongyang <hongyang.yang@easystack.cn>
When configure with --disable-guest-agent, make check will fail with:
ERROR:tests/test-qga.c:74:fixture_setup: assertion failed (error == NULL):
Failed to execute child process "/home/xx/qemu/qemu-ga" (No such file or
directory) (g-exec-error-quark, 8)
make: *** [check-tests/test-qga] Error 1
This check was commented out by bab47d9a75a. I think that was by
mistake, because the commit message of that commit didn't mention
this change.
Signed-off-by: Yang Hongyang <hongyang.yang@easystack.cn>
Cc: Gerd Hoffmann <kraxel@redhat.com>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Cc: qemu-stable@nongnu.org
---
tests/Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/Makefile b/tests/Makefile
index 9de9598..9194f18 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -83,7 +83,9 @@ check-unit-y += tests/test-crypto-cipher$(EXESUF)
check-unit-y += tests/test-crypto-secret$(EXESUF)
check-unit-$(CONFIG_GNUTLS) += tests/test-crypto-tlscredsx509$(EXESUF)
check-unit-$(CONFIG_GNUTLS) += tests/test-crypto-tlssession$(EXESUF)
-#check-unit-$(CONFIG_LINUX) += tests/test-qga$(EXESUF)
+ifneq (,$(findstring qemu-ga,$(TOOLS)))
+check-unit-$(CONFIG_LINUX) += tests/test-qga$(EXESUF)
+endif
check-unit-y += tests/test-timed-average$(EXESUF)
check-unit-y += tests/test-io-task$(EXESUF)
check-unit-y += tests/test-io-channel-socket$(EXESUF)
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PULL for-2.6 0/1] qemu-ga patch queue for 2.6
2016-04-19 22:34 [Qemu-devel] [PULL for-2.6 0/1] qemu-ga patch queue for 2.6 Michael Roth
2016-04-19 22:34 ` [Qemu-devel] [PULL 1/1] qemu-ga: do not run qga test when guest agent disabled Michael Roth
@ 2016-04-20 15:16 ` Peter Maydell
1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2016-04-20 15:16 UTC (permalink / raw)
To: Michael Roth; +Cc: QEMU Developers, qemu-stable
On 19 April 2016 at 23:34, Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
> The following changes since commit 1f7685fafa6ba1354731a59822e5cc43323d6989:
>
> Update language files for QEMU 2.6.0 (2016-04-19 18:41:25 +0100)
>
> are available in the git repository at:
>
> git://github.com/mdroth/qemu.git tags/qga-pull-2016-04-19-tag
>
> for you to fetch changes up to fb91f30bb9716c391ce0441942fffa601ad99684:
>
> qemu-ga: do not run qga test when guest agent disabled (2016-04-19 16:51:15 -0500)
>
> ----------------------------------------------------------------
> qemu-ga patch queue for 2.6
>
> * fixes inadvertant change that unconditionally disables qemu-ga unit test
> * fixes make check failures when building with --disable-guest-agent that
> were present visible before the unit test was inadvertantly disabled.
>
> ----------------------------------------------------------------
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-04-20 15:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-19 22:34 [Qemu-devel] [PULL for-2.6 0/1] qemu-ga patch queue for 2.6 Michael Roth
2016-04-19 22:34 ` [Qemu-devel] [PULL 1/1] qemu-ga: do not run qga test when guest agent disabled Michael Roth
2016-04-20 15:16 ` [Qemu-devel] [PULL for-2.6 0/1] qemu-ga patch queue for 2.6 Peter Maydell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).