From: Michael Walle Date: Mon, 23 Sep 2013 18:53:04 +0000 (+0200) Subject: lm32_sys: dump cpu state if test case fails X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8c5edce5b775f98cff2e340427740137bd6847be;p=qemu.git lm32_sys: dump cpu state if test case fails This will ease debugging the test cases. Signed-off-by: Michael Walle --- diff --git a/hw/misc/lm32_sys.c b/hw/misc/lm32_sys.c index b2e157c68a..e394f2e63b 100644 --- a/hw/misc/lm32_sys.c +++ b/hw/misc/lm32_sys.c @@ -82,6 +82,9 @@ static void sys_write(void *opaque, hwaddr addr, testname = (char *)s->testname; fprintf(stderr, "TC %-*s %s\n", MAX_TESTNAME_LEN, testname, (value) ? "FAILED" : "OK"); + if (value) { + cpu_dump_state(qemu_get_cpu(0), stderr, fprintf, 0); + } break; case R_TESTNAME: s->regs[addr] = value;