[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL v3 10/12] lm32_sys: dump cpu state if test case fails
From: |
Michael Walle |
Subject: |
[Qemu-devel] [PULL v3 10/12] lm32_sys: dump cpu state if test case fails |
Date: |
Thu, 28 Nov 2013 19:43:20 +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 6af0cca..1fd69ff 100644
--- a/hw/misc/lm32_sys.c
+++ b/hw/misc/lm32_sys.c
@@ -81,6 +81,9 @@ static void sys_write(void *opaque, hwaddr addr,
s->regs[addr] = value;
testname = (char *)s->testname;
fprintf(stderr, "TC %-32s %s\n", 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
- [Qemu-devel] [PULL v3 00/12] target-lm32 updates, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 02/12] tests: lm32: new rule for single test cases, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 01/12] lm32_sys: increase test case name length limit, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 03/12] milkymist-uart: use qemu_chr_fe_write_all() instead of qemu_chr_fe_write(), Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 04/12] lm32_uart/lm32_juart: use qemu_chr_fe_write_all(), Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 06/12] target-lm32: kill cpu_abort() calls, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 09/12] lm32_sys: print test result on stderr, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 07/12] target-lm32: move model features to LM32CPU, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 05/12] milkymist-vgafb: swap pixel data in source buffer, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 10/12] lm32_sys: dump cpu state if test case fails,
Michael Walle <=
- [Qemu-devel] [PULL v3 11/12] target-lm32: stop VM on illegal or unknown instruction, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 08/12] target-lm32: add breakpoint/watchpoint support, Michael Walle, 2013/11/28
- [Qemu-devel] [PULL v3 12/12] hw/lm32: print error if cpu model is not found, Michael Walle, 2013/11/28