summaryrefslogtreecommitdiff
path: root/hw/misc
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2013-09-23 20:53:04 +0200
committerMichael Walle <michael@walle.cc>2014-02-04 19:47:39 +0100
commit8c5edce5b775f98cff2e340427740137bd6847be (patch)
treed53985a81e4ad0665f0c5ee82f674a3fc15c17fb /hw/misc
parent9a59e6e307073f06b7a925b2b0e333301daa2f22 (diff)
downloadqemu-8c5edce5b775f98cff2e340427740137bd6847be.tar.gz
lm32_sys: dump cpu state if test case fails
This will ease debugging the test cases. Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'hw/misc')
-rw-r--r--hw/misc/lm32_sys.c3
1 files changed, 3 insertions, 0 deletions
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;