From: Igor Mammedov <imammedo@redhat.com>
To: Gal Hammer <ghammer@redhat.com>
Cc: pbonzini@redhat.com, qemu-devel@nongnu.org, mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH V16 4/4] tests: add a unit test for the vmgenid device
Date: Wed, 17 Jun 2015 01:41:48 +0200 [thread overview]
Message-ID: <20150617014148.09e1e017@igors-macbook-pro.local> (raw)
In-Reply-To: <1434463863-26560-5-git-send-email-ghammer@redhat.com>
On Tue, 16 Jun 2015 17:11:03 +0300
Gal Hammer <ghammer@redhat.com> wrote:
> Signed-off-by: Gal Hammer <ghammer@redhat.com>
> ---
> tests/Makefile | 2 ++
> tests/vmgenid-test.c | 44
> ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46
> insertions(+) create mode 100644 tests/vmgenid-test.c
>
> diff --git a/tests/Makefile b/tests/Makefile
> index c5e4744..3608068 100644
> --- a/tests/Makefile
> +++ b/tests/Makefile
> @@ -177,6 +177,7 @@ check-qtest-i386-y += tests/pc-cpu-test$(EXESUF)
> check-qtest-i386-y += tests/q35-test$(EXESUF)
> gcov-files-i386-y += hw/pci-host/q35.c
> check-qtest-i386-$(CONFIG_LINUX) += tests/vhost-user-test$(EXESUF)
> +check-qtest-i386-y += tests/vmgenid-test$(EXESUF)
> check-qtest-x86_64-y = $(check-qtest-i386-y)
> gcov-files-i386-y += i386-softmmu/hw/timer/mc146818rtc.c
> gcov-files-x86_64-y = $(subst
> i386-softmmu/,x86_64-softmmu/,$(gcov-files-i386-y)) @@ -396,6 +397,7
> @@ tests/vhost-user-test$(EXESUF): tests/vhost-user-test.o
> qemu-char.o qemu-timer.o
> tests/qemu-iotests/socket_scm_helper$(EXESUF):
> tests/qemu-iotests/socket_scm_helper.o tests/test-qemu-opts$(EXESUF):
> tests/test-qemu-opts.o libqemuutil.a libqemustub.a
> tests/test-write-threshold$(EXESUF): tests/test-write-threshold.o
> $(block-obj-y) libqemuutil.a libqemustub.a
> +tests/vmgenid-test$(EXESUF): tests/vmgenid-test.o ifeq
> ($(CONFIG_POSIX),y) LIBS += -lutil diff --git a/tests/vmgenid-test.c
> b/tests/vmgenid-test.c new file mode 100644 index 0000000..dad1f1b
> --- /dev/null
> +++ b/tests/vmgenid-test.c
> @@ -0,0 +1,44 @@
> +/*
> + * QTest testcase for VM Generation ID
> + *
> + * Copyright (c) 2015 Red Hat, Inc.
> + *
> + * This work is licensed under the terms of the GNU GPL, version 2
> or later.
> + * See the COPYING file in the top-level directory.
> + */
> +
> +#include <string.h>
> +#include "libqtest.h"
> +
> +static void vmgenid_test(void)
> +{
> + static const uint8_t expected[16] = {
> + 0x32, 0x4e, 0x6e, 0xaf, 0xd1, 0xd1, 0x4b, 0xf6,
> + 0xbf, 0x41, 0xb9, 0xbb, 0x6c, 0x91, 0xfb, 0x87
> + };
> + uint8_t guid[16];
> + uint32_t i;
> +
> + /* Skip the ACPI ADDR method and read the GUID directly from
> memory. */
> + for (i = 0; i < 16; i++) {
> + guid[i] = readb(0xfedf0000 + i);
get address from vmgidid.addr property
> + }
> +
> + g_assert_cmpuint(sizeof(guid), ==, sizeof(expected));
> + g_assert(memcmp(guid, expected, sizeof(guid)) == 0);
> +}
> +
> +int main(int argc, char **argv)
> +{
> + int ret;
> +
> + g_test_init(&argc, &argv, NULL);
> + qtest_add_func("/vmgenid/vmgenid", vmgenid_test);
> +
> + qtest_start("-device
> vmgenid,uuid=324e6eaf-d1d1-4bf6-bf41-b9bb6c91fb87");
add case for non default addr value,
BTW if board would use default mapping addr then it should also set
vmgenid.addr to it so that introspection tools would see
actual mapped addr.
> + ret = g_test_run();
> +
> + qtest_end();
> +
> + return ret;
> +}
prev parent reply other threads:[~2015-06-16 23:42 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-16 14:10 [Qemu-devel] [PATCH V16 0/4] Virtual Machine Generation ID Gal Hammer
2015-06-16 14:11 ` [Qemu-devel] [PATCH V16 1/4] docs: vm generation id device's description Gal Hammer
2015-06-16 15:22 ` Eric Blake
2015-06-16 14:11 ` [Qemu-devel] [PATCH V16 2/4] acpi: add a vm_generation_id_changed method Gal Hammer
2015-06-16 15:23 ` Eric Blake
2015-06-16 22:55 ` Igor Mammedov
2015-06-16 14:11 ` [Qemu-devel] [PATCH V16 3/4] i386: add a Virtual Machine Generation ID device Gal Hammer
2015-06-16 22:52 ` Igor Mammedov
2015-06-16 23:08 ` Igor Mammedov
2015-06-16 14:11 ` [Qemu-devel] [PATCH V16 4/4] tests: add a unit test for the vmgenid device Gal Hammer
2015-06-16 23:41 ` Igor Mammedov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150617014148.09e1e017@igors-macbook-pro.local \
--to=imammedo@redhat.com \
--cc=ghammer@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).