All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sergey Fedorov <serge.fdrv@gmail.com>
To: "Emilio G. Cota" <cota@braap.org>,
	QEMU Developers <qemu-devel@nongnu.org>,
	MTTCG Devel <mttcg@listserver.greensocs.com>
Cc: "Alex Bennée" <alex.bennee@linaro.org>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Richard Henderson" <rth@twiddle.net>
Subject: Re: [Qemu-devel] [PATCH v7 13/15] qht: add test-qht-par to invoke qht-bench from 'check' target
Date: Thu, 9 Jun 2016 00:53:35 +0300	[thread overview]
Message-ID: <575893DF.3020300@gmail.com> (raw)
In-Reply-To: <1465412133-3029-14-git-send-email-cota@braap.org>

On 08/06/16 21:55, Emilio G. Cota wrote:
> Signed-off-by: Emilio G. Cota <cota@braap.org>

Acked-by: Sergey Fedorov <sergey.fedorov@linaro.org>

> ---
>  tests/.gitignore     |  1 +
>  tests/Makefile       |  5 ++++-
>  tests/test-qht-par.c | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++
>  3 files changed, 61 insertions(+), 1 deletion(-)
>  create mode 100644 tests/test-qht-par.c
>
> diff --git a/tests/.gitignore b/tests/.gitignore
> index d19023e..840ea39 100644
> --- a/tests/.gitignore
> +++ b/tests/.gitignore
> @@ -52,6 +52,7 @@ test-qemu-opts
>  test-qdist
>  test-qga
>  test-qht
> +test-qht-par
>  test-qmp-commands
>  test-qmp-commands.h
>  test-qmp-event
> diff --git a/tests/Makefile b/tests/Makefile
> index 7b00301..7d63d16 100644
> --- a/tests/Makefile
> +++ b/tests/Makefile
> @@ -74,6 +74,8 @@ check-unit-y += tests/test-qdist$(EXESUF)
>  gcov-files-test-qdist-y = util/qdist.c
>  check-unit-y += tests/test-qht$(EXESUF)
>  gcov-files-test-qht-y = util/qht.c
> +check-unit-y += tests/test-qht-par$(EXESUF)
> +gcov-files-test-qht-par-y = util/qht.c
>  check-unit-y += tests/test-bitops$(EXESUF)
>  check-unit-$(CONFIG_HAS_GLIB_SUBPROCESS_TESTS) += tests/test-qdev-global-props$(EXESUF)
>  check-unit-y += tests/check-qom-interface$(EXESUF)
> @@ -400,7 +402,7 @@ test-obj-y = tests/check-qint.o tests/check-qstring.o tests/check-qdict.o \
>  	tests/test-opts-visitor.o tests/test-qmp-event.o \
>  	tests/rcutorture.o tests/test-rcu-list.o \
>  	tests/test-qdist.o \
> -	tests/test-qht.o tests/qht-bench.o
> +	tests/test-qht.o tests/qht-bench.o tests/test-qht-par.o
>  
>  $(test-obj-y): QEMU_INCLUDES += -Itests
>  QEMU_CFLAGS += -I$(SRC_PATH)/tests
> @@ -441,6 +443,7 @@ tests/rcutorture$(EXESUF): tests/rcutorture.o $(test-util-obj-y)
>  tests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y)
>  tests/test-qdist$(EXESUF): tests/test-qdist.o $(test-util-obj-y)
>  tests/test-qht$(EXESUF): tests/test-qht.o $(test-util-obj-y)
> +tests/test-qht-par$(EXESUF): tests/test-qht-par.o tests/qht-bench$(EXESUF) $(test-util-obj-y)
>  tests/qht-bench$(EXESUF): tests/qht-bench.o $(test-util-obj-y)
>  
>  tests/test-qdev-global-props$(EXESUF): tests/test-qdev-global-props.o \
> diff --git a/tests/test-qht-par.c b/tests/test-qht-par.c
> new file mode 100644
> index 0000000..f09e004
> --- /dev/null
> +++ b/tests/test-qht-par.c
> @@ -0,0 +1,56 @@
> +/*
> + * Copyright (C) 2016, Emilio G. Cota <cota@braap.org>
> + *
> + * License: GNU GPL, version 2 or later.
> + *   See the COPYING file in the top-level directory.
> + */
> +#include "qemu/osdep.h"
> +#include <glib.h>
> +
> +#define TEST_QHT_STRING "tests/qht-bench 1>/dev/null 2>&1 -R -S0.1 -D10000 -N1 "
> +
> +static void test_qht(int n_threads, int update_rate, int duration)
> +{
> +    char *str;
> +    int rc;
> +
> +    str = g_strdup_printf(TEST_QHT_STRING "-n %d -u %d -d %d",
> +                          n_threads, update_rate, duration);
> +    rc = system(str);
> +    g_free(str);
> +    g_assert_cmpint(rc, ==, 0);
> +}
> +
> +static void test_2th0u1s(void)
> +{
> +    test_qht(2, 0, 1);
> +}
> +
> +static void test_2th20u1s(void)
> +{
> +    test_qht(2, 20, 1);
> +}
> +
> +static void test_2th0u5s(void)
> +{
> +    test_qht(2, 0, 5);
> +}
> +
> +static void test_2th20u5s(void)
> +{
> +    test_qht(2, 20, 5);
> +}
> +
> +int main(int argc, char *argv[])
> +{
> +    g_test_init(&argc, &argv, NULL);
> +
> +    if (g_test_quick()) {
> +        g_test_add_func("/qht/parallel/2threads-0%updates-1s", test_2th0u1s);
> +        g_test_add_func("/qht/parallel/2threads-20%updates-1s", test_2th20u1s);
> +    } else {
> +        g_test_add_func("/qht/parallel/2threads-0%updates-5s", test_2th0u5s);
> +        g_test_add_func("/qht/parallel/2threads-20%updates-5s", test_2th20u5s);
> +    }
> +    return g_test_run();
> +}

  reply	other threads:[~2016-06-08 21:53 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-08 18:55 [Qemu-devel] [PATCH v7 00/15] tb hash improvements Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 01/15] compiler.h: add QEMU_ALIGNED() to enforce struct alignment Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 02/15] seqlock: remove optional mutex Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 03/15] seqlock: rename write_lock/unlock to write_begin/end Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 04/15] include/processor.h: define cpu_relax() Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 05/15] qemu-thread: add simple test-and-set spinlock Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 06/15] exec: add tb_hash_func5, derived from xxhash Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 07/15] tb hash: hash phys_pc, pc, and flags with xxhash Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 08/15] qdist: add module to represent frequency distributions of data Emilio G. Cota
2016-06-08 20:45   ` Sergey Fedorov
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 09/15] qdist: add test program Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 10/15] qht: QEMU's fast, resizable and scalable Hash Table Emilio G. Cota
2016-06-08 21:22   ` Sergey Fedorov
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 11/15] qht: add test program Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 12/15] qht: add qht-bench, a performance benchmark Emilio G. Cota
2016-06-08 21:51   ` Sergey Fedorov
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 13/15] qht: add test-qht-par to invoke qht-bench from 'check' target Emilio G. Cota
2016-06-08 21:53   ` Sergey Fedorov [this message]
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 14/15] tb hash: track translated blocks with qht Emilio G. Cota
2016-06-08 18:55 ` [Qemu-devel] [PATCH v7 15/15] translate-all: add tb hash bucket info to 'info jit' dump Emilio G. Cota
2016-06-09 19:54 ` [Qemu-devel] [PATCH v7 00/15] tb hash improvements Sergey Fedorov

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=575893DF.3020300@gmail.com \
    --to=serge.fdrv@gmail.com \
    --cc=alex.bennee@linaro.org \
    --cc=cota@braap.org \
    --cc=mttcg@listserver.greensocs.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /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 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.