qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PULL v5 10/12] lm32_sys: dump cpu state if test case fails


From: Michael Walle
Subject: [Qemu-devel] [PULL v5 10/12] lm32_sys: dump cpu state if test case fails
Date: Tue, 4 Feb 2014 19:58:32 +0100

This will ease debugging the test cases.

Signed-off-by: Michael Walle <address@hidden>
---
 hw/misc/lm32_sys.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/hw/misc/lm32_sys.c b/hw/misc/lm32_sys.c
index b2e157c..e394f2e 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;
-- 
1.7.10.4




reply via email to

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