qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v3 05/11] tests/qtest/qos-test: dump environment variables if


From: Paolo Bonzini
Subject: Re: [PATCH v3 05/11] tests/qtest/qos-test: dump environment variables if verbose
Date: Thu, 8 Oct 2020 14:37:00 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0

On 02/10/20 18:15, Christian Schoenebeck wrote:
> -int main(int argc, char **argv)
> +int main(int argc, char **argv, char** envp)
>  {
>      g_test_init(&argc, &argv, NULL);
> +    if (g_test_verbose()) {
> +        printf("ENVIRONMENT VARIABLES: {\n");
> +        for (char **env = envp; *env != 0; env++) {
> +            printf("\t%s\n", *env);
> +        }
> +        printf("}\n");
> +    }

But doesn't this (and patch 6 as well) break TAP output?  Using
g_test_message + g_test_verbose would be the best of both worlds.

In fact using printf in tests should be forbidden, since glib 2.62 and
newer _always_ emit TAP.

Paolo




reply via email to

[Prev in Thread] Current Thread [Next in Thread]