diff options
author | Michael Walle <michael@walle.cc> | 2013-09-23 20:53:04 +0200 |
---|---|---|
committer | Michael Walle <michael@walle.cc> | 2014-02-04 19:47:39 +0100 |
commit | 8c5edce5b775f98cff2e340427740137bd6847be (patch) | |
tree | d53985a81e4ad0665f0c5ee82f674a3fc15c17fb | |
parent | 9a59e6e307073f06b7a925b2b0e333301daa2f22 (diff) |
lm32_sys: dump cpu state if test case fails
This will ease debugging the test cases.
Signed-off-by: Michael Walle <michael@walle.cc>
-rw-r--r-- | hw/misc/lm32_sys.c | 3 |
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; |