mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
test: lm32: make test cases independent
Make test cases independent from from each other. Eg. if a test case needs a specific value in register A, don't rely on the fact that it is already set by the preceding test case. Signed-off-by: Michael Walle <michael@walle.cc>
This commit is contained in:
parent
178ac111bc
commit
a946ce8020
8 changed files with 25 additions and 0 deletions
|
@ -9,16 +9,19 @@ sw (r1+0), r2
|
|||
check_mem data 0xaabbccdd
|
||||
|
||||
test_name SW_2
|
||||
load r1 data
|
||||
load r2 0x00112233
|
||||
sw (r1+4), r2
|
||||
check_mem data1 0x00112233
|
||||
|
||||
test_name SW_3
|
||||
load r1 data
|
||||
load r2 0x44556677
|
||||
sw (r1+-4), r2
|
||||
check_mem data0 0x44556677
|
||||
|
||||
test_name SW_4
|
||||
load r1 data
|
||||
sw (r1+0), r1
|
||||
lw r3, (r1+0)
|
||||
check_r3 data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue