From: Tobias Platen Date: Thu, 18 Nov 2021 19:01:12 +0000 (+0100) Subject: more work on test_loadstore1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1df2da4b7862e74599b46610cb400a9e64b8b2e2;p=soc.git more work on test_loadstore1 --- diff --git a/src/soc/experiment/test/test_loadstore1.py b/src/soc/experiment/test/test_loadstore1.py index 3c4013d1..b4cf3f80 100644 --- a/src/soc/experiment/test/test_loadstore1.py +++ b/src/soc/experiment/test/test_loadstore1.py @@ -98,6 +98,8 @@ def setup_mmu(): return m, cmpi +test_exceptions = True + def _test_loadstore1(dut, mem): mmu = dut.submodules.mmu pi = dut.submodules.ldst.pi @@ -119,7 +121,7 @@ def _test_loadstore1(dut, mem): assert ld_data == 0xf553b658ba7e1f51 print("do_dcbz ===============") - yield from pi_st(pi, addr, data, 8, msr_pr=0, is_dcbz=1) + yield from pi_st(pi, addr, data, 8, msr_pr=1, is_dcbz=1) print("done_dcbz ===============") yield @@ -128,30 +130,23 @@ def _test_loadstore1(dut, mem): print(ld_data) assert ld_data == 0 - print("=== alignment error ===") - addr = 0xFF100e0FF - ld_data = yield from pi_ld(pi, addr, 8, msr_pr=1) - alignment = yield pi.exc_o.alignment - happened = yield pi.exc_o.happened - dar = yield pi.dar_o - assert(happened==1) - assert(alignment==1) - assert(dar==addr) - yield from wait_busy(pi, no=True) # wait while busy - # wait is only needed in case of in exception here - print("=== alignment error test passed ===") + if test_exceptions: + # causes next test to hang + print("=== alignment error ===") + addr = 0xFF100e0FF + ld_data = yield from pi_ld(pi, addr, 8, msr_pr=1) + alignment = yield pi.exc_o.alignment + happened = yield pi.exc_o.happened + dar = yield pi.dar_o + assert(happened==1) + assert(alignment==1) + assert(dar==addr) + yield from wait_busy(pi, debug="pi_ld_E_alignment_error") + # wait is only needed in case of in exception here + print("=== alignment error test passed ===") - """ - #next test addr = 0xFF100e000 - ld_data = yield from pi_ld_debug(pi, addr, 8, msr_pr=1) - alignment = yield pi.exc_o.alignment - happened = yield pi.exc_o.happened - dar = yield pi.dar_o - assert(happened==1) - assert(alignment==1) - assert(dar==addr) - """ + ld_data = yield from pi_ld(pi, addr, 8, msr_pr=1) yield stop = True