qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PULL v4 09/12] lm32_sys: print te st result on stderr


From: Michael Walle
Subject: Re: [Qemu-devel] [PULL v4 09/12] lm32_sys: print te st result on stderr
Date: Tue, 04 Feb 2014 19:12:39 +0100
User-agent: Roundcube Webmail/0.9.5

Am 2014-02-03 23:59, schrieb Peter Maydell:
On 3 February 2014 22:39, Michael Walle <address@hidden> wrote:
Am 2014-02-01 21:31, schrieb Michael Walle:

Am Samstag, 1. Februar 2014, 19:00:01 schrieb Peter Maydell:

On 20 January 2014 19:34, Michael Walle <address@hidden> wrote:
> Do not use qemu_log().
>
> Signed-off-by: Michael Walle <address@hidden>
> ---
>
>  hw/misc/lm32_sys.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/misc/lm32_sys.c b/hw/misc/lm32_sys.c
> index 8176cdb..6af0cca 100644
> --- a/hw/misc/lm32_sys.c
> +++ b/hw/misc/lm32_sys.c
> @@ -80,7 +80,7 @@ static void sys_write(void *opaque, hwaddr addr,
>
>      case R_PASSFAIL:
>          s->regs[addr] = value;
>          testname = (char *)s->testname;
>
> -        qemu_log("TC  %-32s %s\n", testname, (value) ? "FAILED" :
> "OK");
> +        fprintf(stderr, "TC  %-32s %s\n", testname, (value) ? "FAILED"
> :
> "OK");
>
>          break;

This looks wrong to me -- devices shouldn't print to stderr, ideally.


lm32_sys is actually no real device. it is just used for unit testing.


Hi Peter,

is this ok? or do you have some better idea? ideally, the lm32 target should use semihosting and should print to stdout/stderr itself. but that is not
the case atm.

Well, I guess for a testbench only kind of device printing to stderr is OK.

I've just noticed that the device maps itself into the memory map.
That's pretty foul. I can see why it does it, but really this thing is
bending a lot of the rules.

So if it is ok, i'll leave this patch in this pull request. But i'll also work on the lm32 semihosting so we can get rid of this device entirely.

-michael



reply via email to

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