OSDN Git Service

lm32_sys: dump cpu state if test case fails
authorMichael Walle <michael@walle.cc>
Mon, 23 Sep 2013 18:53:04 +0000 (20:53 +0200)
committerMichael Walle <michael@walle.cc>
Tue, 4 Feb 2014 18:47:39 +0000 (19:47 +0100)
This will ease debugging the test cases.

Signed-off-by: Michael Walle <michael@walle.cc>
hw/misc/lm32_sys.c

index b2e157c..e394f2e 100644 (file)
@@ -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;