All of lore.kernel.org
 help / color / mirror / Atom feed
From: Igor Mammedov <imammedo@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@redhat.com>
Cc: Laurent Vivier <lvivier@redhat.com>,
	Peter Maydell <peter.maydell@linaro.org>,
	Thomas Huth <thuth@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	qemu-devel@nongnu.org, qemu-arm@nongnu.org,
	Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-arm] [PATCH] tests/bios-tables-test: Sanitize test verbose output
Date: Thu, 1 Nov 2018 11:04:27 +0100	[thread overview]
Message-ID: <20181101110427.4ffc6a0a@redhat.com> (raw)
In-Reply-To: <20181030001841.1658-1-philmd@redhat.com>

On Tue, 30 Oct 2018 01:18:40 +0100
Philippe Mathieu-Daudé <philmd@redhat.com> wrote:

> Fix the extraneous extra blank lines in the test output when running with V=1.
> 
> Before:
> 
>     TEST: tests/bios-tables-test... (pid=25678)
>       /i386/acpi/piix4:
>     Looking for expected file 'tests/acpi-test-data/pc/DSDT'
> 
>     Using expected file 'tests/acpi-test-data/pc/DSDT'
> 
>     Looking for expected file 'tests/acpi-test-data/pc/FACP'
> 
>     Using expected file 'tests/acpi-test-data/pc/FACP'
> 
>     Looking for expected file 'tests/acpi-test-data/pc/APIC'
> 
>     Using expected file 'tests/acpi-test-data/pc/APIC'
> 
>     Looking for expected file 'tests/acpi-test-data/pc/HPET'
> 
>     Using expected file 'tests/acpi-test-data/pc/HPET'
>     OK
> 
> After:
> 
>     TEST: tests/bios-tables-test... (pid=667)
>       /i386/acpi/piix4:
>     Looking for expected file 'tests/acpi-test-data/pc/DSDT'
>     Using expected file 'tests/acpi-test-data/pc/DSDT'
>     Looking for expected file 'tests/acpi-test-data/pc/FACP'
>     Using expected file 'tests/acpi-test-data/pc/FACP'
>     Looking for expected file 'tests/acpi-test-data/pc/APIC'
>     Using expected file 'tests/acpi-test-data/pc/APIC'
>     Looking for expected file 'tests/acpi-test-data/pc/HPET'
>     Using expected file 'tests/acpi-test-data/pc/HPET'
>     OK
> 
> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>

> ---
>  tests/bios-tables-test.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c
> index 4e24930c4b..02dd48de0d 100644
> --- a/tests/bios-tables-test.c
> +++ b/tests/bios-tables-test.c
> @@ -371,6 +371,9 @@ static GArray *load_expected_aml(test_data *data)
>      gboolean ret;
>  
>      GArray *exp_tables = g_array_new(false, true, sizeof(AcpiSdtTable));
> +    if (getenv("V")) {
> +        fputc('\n', stderr);
> +    }
>      for (i = 0; i < data->tables->len; ++i) {
>          AcpiSdtTable exp_sdt;
>          gchar *aml_file = NULL;
> @@ -385,7 +388,7 @@ try_again:
>          aml_file = g_strdup_printf("%s/%s/%.4s%s", data_dir, data->machine,
>                                     (gchar *)&sdt->header.signature, ext);
>          if (getenv("V")) {
> -            fprintf(stderr, "\nLooking for expected file '%s'\n", aml_file);
> +            fprintf(stderr, "Looking for expected file '%s'\n", aml_file);
>          }
>          if (g_file_test(aml_file, G_FILE_TEST_EXISTS)) {
>              exp_sdt.aml_file = aml_file;
> @@ -397,7 +400,7 @@ try_again:
>          }
>          g_assert(exp_sdt.aml_file);
>          if (getenv("V")) {
> -            fprintf(stderr, "\nUsing expected file '%s'\n", aml_file);
> +            fprintf(stderr, "Using expected file '%s'\n", aml_file);
>          }
>          ret = g_file_get_contents(aml_file, &exp_sdt.aml,
>                                    &exp_sdt.aml_len, &error);


WARNING: multiple messages have this Message-ID (diff)
From: Igor Mammedov <imammedo@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	qemu-devel@nongnu.org, qemu-arm@nongnu.org,
	Paolo Bonzini <pbonzini@redhat.com>,
	Thomas Huth <thuth@redhat.com>,
	Laurent Vivier <lvivier@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] tests/bios-tables-test: Sanitize test verbose output
Date: Thu, 1 Nov 2018 11:04:27 +0100	[thread overview]
Message-ID: <20181101110427.4ffc6a0a@redhat.com> (raw)
In-Reply-To: <20181030001841.1658-1-philmd@redhat.com>

On Tue, 30 Oct 2018 01:18:40 +0100
Philippe Mathieu-Daudé <philmd@redhat.com> wrote:

> Fix the extraneous extra blank lines in the test output when running with V=1.
> 
> Before:
> 
>     TEST: tests/bios-tables-test... (pid=25678)
>       /i386/acpi/piix4:
>     Looking for expected file 'tests/acpi-test-data/pc/DSDT'
> 
>     Using expected file 'tests/acpi-test-data/pc/DSDT'
> 
>     Looking for expected file 'tests/acpi-test-data/pc/FACP'
> 
>     Using expected file 'tests/acpi-test-data/pc/FACP'
> 
>     Looking for expected file 'tests/acpi-test-data/pc/APIC'
> 
>     Using expected file 'tests/acpi-test-data/pc/APIC'
> 
>     Looking for expected file 'tests/acpi-test-data/pc/HPET'
> 
>     Using expected file 'tests/acpi-test-data/pc/HPET'
>     OK
> 
> After:
> 
>     TEST: tests/bios-tables-test... (pid=667)
>       /i386/acpi/piix4:
>     Looking for expected file 'tests/acpi-test-data/pc/DSDT'
>     Using expected file 'tests/acpi-test-data/pc/DSDT'
>     Looking for expected file 'tests/acpi-test-data/pc/FACP'
>     Using expected file 'tests/acpi-test-data/pc/FACP'
>     Looking for expected file 'tests/acpi-test-data/pc/APIC'
>     Using expected file 'tests/acpi-test-data/pc/APIC'
>     Looking for expected file 'tests/acpi-test-data/pc/HPET'
>     Using expected file 'tests/acpi-test-data/pc/HPET'
>     OK
> 
> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>

> ---
>  tests/bios-tables-test.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c
> index 4e24930c4b..02dd48de0d 100644
> --- a/tests/bios-tables-test.c
> +++ b/tests/bios-tables-test.c
> @@ -371,6 +371,9 @@ static GArray *load_expected_aml(test_data *data)
>      gboolean ret;
>  
>      GArray *exp_tables = g_array_new(false, true, sizeof(AcpiSdtTable));
> +    if (getenv("V")) {
> +        fputc('\n', stderr);
> +    }
>      for (i = 0; i < data->tables->len; ++i) {
>          AcpiSdtTable exp_sdt;
>          gchar *aml_file = NULL;
> @@ -385,7 +388,7 @@ try_again:
>          aml_file = g_strdup_printf("%s/%s/%.4s%s", data_dir, data->machine,
>                                     (gchar *)&sdt->header.signature, ext);
>          if (getenv("V")) {
> -            fprintf(stderr, "\nLooking for expected file '%s'\n", aml_file);
> +            fprintf(stderr, "Looking for expected file '%s'\n", aml_file);
>          }
>          if (g_file_test(aml_file, G_FILE_TEST_EXISTS)) {
>              exp_sdt.aml_file = aml_file;
> @@ -397,7 +400,7 @@ try_again:
>          }
>          g_assert(exp_sdt.aml_file);
>          if (getenv("V")) {
> -            fprintf(stderr, "\nUsing expected file '%s'\n", aml_file);
> +            fprintf(stderr, "Using expected file '%s'\n", aml_file);
>          }
>          ret = g_file_get_contents(aml_file, &exp_sdt.aml,
>                                    &exp_sdt.aml_len, &error);

  reply	other threads:[~2018-11-01 10:04 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-30  0:18 [Qemu-arm] [PATCH] tests/bios-tables-test: Sanitize test verbose output Philippe Mathieu-Daudé
2018-10-30  0:18 ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-11-01 10:04 ` Igor Mammedov [this message]
2018-11-01 10:04   ` Igor Mammedov
2018-11-01 14:26 ` Eric Blake
2018-11-01 14:26   ` Eric Blake
2018-11-01 14:30   ` Peter Maydell
2018-11-01 14:30     ` Peter Maydell
2018-11-02 22:03 ` [Qemu-arm] " Thomas Huth
2018-11-02 22:03   ` [Qemu-devel] " Thomas Huth

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=20181101110427.4ffc6a0a@redhat.com \
    --to=imammedo@redhat.com \
    --cc=lvivier@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@redhat.com \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=thuth@redhat.com \
    /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.